Advertisement
virtualideaz

FunctionExample.html

Apr 4th, 2015
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.35 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <title>Function Example JavaScript</title>
  4.         <script>
  5.             function displayMessage() { //user-defined function
  6.                 alert("This is an alert box sample"); //built-in function
  7.             }
  8.         </script>
  9. </head>
  10. <body>
  11.     <p>Function Example</p>
  12.     <form>
  13.         <input type="button" value="Click me" onClick="displayMessage()" />
  14.     </form>
  15. </body>
  16.  
  17. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement