Search This Blog

Thursday, April 22, 2010

Java script alert box message box multi line

<html>
<head>
<script type="text/javascript">
function disp_alert()
{
alert("How are you ?" + '\n' + "I hope you are fine.");
}
</script>
</head>
<body>

<input type="button" onclick="disp_alert()" value="Show" />

</body>
</html>

1 comment: