shake demo

Click to shake the box.

Wednesday, 20 November 2013

JavaScript - Simple Message Box

<!DOCTYPE html>
<html>
<body>

<p>Click the button to display an alert box.</p>
<button onclick="msgBoxFunction()">Click Me</button>
<script>
function msgBoxFunction()
{
alert("This is Message Box!");
}
</script>
</body>
</html>

No comments:

Post a Comment