Guest User

Untitled

a guest
Nov 22nd, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function doSomething(event, chkbox)
  5. {
  6. if (event.shiftKey)
  7. alert('Shift key was pressed while picking ' + chkbox.value);
  8. else
  9. alert('You picked ' + chkbox.value);
  10. }
  11. </script>
  12. </head>
  13. <body>
  14. <h3>Pick a Color</h3>
  15. <input type="radio" name="myColors" onclick="doSomething(event, this)" value="Red" /> Red<br/>
  16. <input type="radio" name="myColors" onclick="doSomething(event, this)" value="Green" /> Green<br/>
  17. <input type="radio" name="myColors" onclick="doSomething(event, this)" value="Blue" /> Blue<br/>
  18. </body>
  19. </html>
Add Comment
Please, Sign In to add comment