Thursday, September 6, 2012

Javascript: Alert, Prompt and Confirm Message Boxes

You may have seen a lot of web sites which display popup messages or message boxes. That's really simple do that. In this post I am going to tell you how to create a message box and will give an example to test the code I will  provide as well.

Javascript Alert Box Example:
Click the below button and a alert box will be shown on website.


Below I have given the code that I have used to display a message box on the site. I have used javascript which you may be familiar with. I have written a javascript function and then called that function on the click event of the button.

// myprogrammingzone code



// myprogrammingzone code


Javascript Prompt Message Box:
Click the below button and a prompt message box will be shown on website.


Below I have given the code that I have used to display a message box on the site. I have used javascript which you may be familiar with. I have written a javascript function and then called that function on the click event of the button.

// myprogrammingzone code



// myprogrammingzone code


Javascript Confirm Message Box Example:
Click the below button and a alert box will be shown on website.


Below I have given the code that I have used to display a message box on the site. I have used javascript which you may be familiar with. I have written a javascript function and then called that function on the click event of the button.


// myprogrammingzone code



// myprogrammingzone code

Hope you have enjoyed this post. Send me suggestions to improve it.

No comments:

Post a Comment