Advertisement
Guest User

Untitled

a guest
May 6th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <input type="radio" name="a" class="rad" value="Option 1"/>Option 1
  2. <input type="radio" name="a" class="rad" value="Option 2"/>Option 2
  3.  
  4. $('.rad').on('change',function(){
  5. console.log('Radio clicked');
  6. });
  7.  
  8. $(function(){
  9. $('.rad').on('change',function(){
  10. console.log('Radio clicked');
  11. });});
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement