Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.37 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function changeTextType(a)
  5. {
  6.     if (a = "true")
  7.     {
  8.         alert('its not checked');  
  9.     }
  10.     else
  11.     {
  12.         alert('its not checked');  
  13.     }
  14. }
  15. </script>
  16. </head>
  17.  
  18. <body alink="orange" vlink="orange" link="orange">
  19.  
  20. <input name="secure" type="checkbox" value="chkbox" onclick="changeTextType(this.checked);"/>
  21.  
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement