Ver Mensaje Individual
  #3 (permalink)  
Antiguo 20/10/2005, 10:05
Avatar de Saruman
Saruman
 
Fecha de Ingreso: mayo-2003
Ubicación: Panama city, Panama, Panama
Mensajes: 1.154
Antigüedad: 21 años, 6 meses
Puntos: 5
ok, tengo esto... pero funciona bien cuando quieres cambiar de <br> a enters, no viceversa... y entonces esta es mi pregunta para los foreros: como hago para reemplazar en todo el contenido el chr(13) a <br> globalmente?? asi como lo tengo solo me reemplaza el de la primera linea... esto lo he buscado por todos lados y no c....

saludos

Código HTML:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<script language="javascript">
function ReplaceEnters(texto, conbr) {
 if (conbr) {
  texto = texto.replace(String.fromCharCode(13), "<br>");
 } else {
  texto = texto.replace(/<br>/g, String.fromCharCode(13));
 }
 alert(texto);
}
</script>
<body>
<textarea name="test" id="test" rows="10" cols="50"></textarea>
<input type="button" value="ok" onclick="ReplaceEnters(document.getElementById('test').value, true)"/>
</body>
</html> 
__________________
Saruman

One Ring to rule them all, One Ring to find them, One Ring to bring them all and in the darkness bind them.