Advertisement
viditkothari

Confirm28092012.html

Sep 29th, 2012
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.47 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <script type="text/javascript" language="javascript">
  5.             function conf()
  6.                 {
  7.                     var temp=document.getElementById('ageTxt');
  8.                     var bln=confirm("Your age is : " + temp.value + " ?");
  9.                     if(bln)
  10.                         alert("You may proceed.");
  11.                     else
  12.                         alert("Not an acceptable age");
  13.                 }
  14.         </script>
  15.     </head>
  16.     <body>
  17.         <input type="text" id="ageTxt">
  18.         <button type="button" onclick="conf()">Validate</button>
  19.     </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement