Demo doesn't work but the rest looks fine ;-) thx
kevchat Version 8 (Major Updates)
Collapse
X
-
<html>
<head>
<script type="text/javascript">
function show_prompt()
{
var name=prompt("Please enter your name","");
if (name!=null && name!="")
{
document.write("<p>Hello " + name + "! No more demand for our site?</p>");
}
}
</script>
</head>
<body>
<input type="button" onclick="show_prompt()" value="Show prompt box" />
</body>
</html>
Comment
Comment