Apply all dialog box.in JAVA Script
programs and screept for all dialog box in java screept it is useful in your website creation.1.allert 2.comform 3.prompt 1.allert--: <html> <head> <title>My Javascript Page</title> </head> <body> <script type="text/javascript"> alert("Welcome to my world!!!"); </script> </body> </html> 2.confirm-- <html> <head> <title>My Javascript Page</title> </head> <body> <script> if (confirm("Do you agree")) {alert("You agree")} else{alert ("You do not agree")}; </script> </body> </html> 3.prompt-- <html> <head> <title>My Javascript Page</title> </head> <body> <script> username=prompt("Please enter your name","Enter your name here"); document.write(username); </script> </body> </html>
- Blogger Comment
- Facebook Comment
Subscribe to:
Post Comments
(
Atom
)
0 comments:
Post a Comment