Ver Mensaje Individual
  #2 (permalink)  
Antiguo 17/06/2004, 17:46
Avatar de Avelar
Avelar
 
Fecha de Ingreso: noviembre-2002
Ubicación: Ensenada, Baja California, México
Mensajes: 673
Antigüedad: 21 años, 5 meses
Puntos: 1
Se me ocurre hacerlo con javascript:

Código:
<html>
<head>
<title> Dos l&iacute;neas </title>
<script language="JavaScript">
function NombreDosLineas() {
document.getElementById('btnX').value = 'Pincha aquí y \n si puedo te contesto.'
}
</script>
</head>
 
<body onload="javascript:NombreDosLineas();">
<input type="button" id="btnX" value="Pincha aquí y \n si puedo te contesto.">
</body>
</html>
__________________
Ariel Avelar

Última edición por Avelar; 17/06/2004 a las 19:43