buenas tardes a todos, hace mucho tiempo encontre una funcion para quitarle y agregarle el salto de linea a una funcion de javascript, para las areas de texto, todo bien, hasta ahora, "FIREFOX", mi cliente me pidio compatibilidad con este navegador, y bueno empece a revisar todos los codigos javascript para hacerlos compatibles con IE y FIREFOX, pero aun no he encontrado porque no me funcionan estas dos funciones en FIREFOX, aca las copio:
function quitaSalto()
{
var Texto;
Texto=document.creaSMT.material.value;
for(j=0;j<2;j++)
{
for(i=0;i<Texto.length;i++)
{
//if((Texto.charCodeAt(i)==10) && (Texto.charCodeAt(i+1)==13) || (Texto.charCodeAt(i)==13) && (Texto.charCodeAt(i+1)==10))
if((Texto.fromCharCode(i)==10) && (Texto.fromCharCode(i+1)==13) || (Texto.fromCharCode(i)==13) && (Texto.fromCharCode(i+1)==10))
{
alert(Texto);
Texto=Texto.substring(0,i) + "\t" + Texto.substring(i+2,Texto.length);
//alert(Texto);
}
//alert(Texto.charCodeAt(i));
}
}
document.creaSMT.material1.value=Texto;
}
function quitaTab(valor)
{
var Texto;
Texto=valor;
for(j=0;j<2;j++)
{
for(i=0;i<Texto.length;i++)
{
if((Texto.charCodeAt(i)==9) || (Texto.charCodeAt(i)==13) && (Texto.charCodeAt(i+1)==9))
{
Texto=Texto.substring(0,i) + "\n" + Texto.substring(i+1,Texto.length);
//alert(Texto);
}
//alert(Texto.charCodeAt(i));
}
}
return Texto;
}
NOSE SI SERA POR EL charCodeAt, quizas el firefox no lo acepta, espero sus comentarios ya que es lo unico que me falta, desde ya gracias por responder, quizas sea algo resimple de hacerlo, pero he buscado y aun no he encontrado nada