Advertisement
Guest User

RSVP

a guest
Sep 13th, 2010
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function show_confirm()
  5. {
  6. var r=confirm("Wedding RSVP!");
  7. if (r==true)
  8.   {
  9.   alert("Of course we'll be there!");
  10.   }
  11. else
  12.   {
  13.   alert("Hahah just kidding, we're totally there!");
  14.   }
  15. }
  16. </script>
  17. </head>
  18. <body>
  19.  
  20. <input type="button" onclick="show_confirm()" value="RSVP Response." />
  21.  
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement