P: ¿Como puedo incluír un salto de línea dentro de un mensaje de alert?
R: [ver ejemplo] Código PHP:
<html>
<head>
<script language="JavaScript">
function mostrar(){
alert("Este es un mensaje de alerta\ncon mas de una línea");
}
</script>
</head>
<body>
<form name="frm">
<input type="button" value="Alert multilínea" onclick="mostrar()">
</form>
</body>
</html>