Advertisement
Guest User

Untitled

a guest
Apr 21st, 2015
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <input type="radio" id="op5" value="1" name="options2" class="custom" />
  2.  
  3. jQuery('#op5').click(function () {
  4. $('input[type=checkbox]').trigger('click');
  5. $(".white").attr('class', 'white checked');
  6. $(".blue").attr('class', 'blue checked');
  7. $(".sub_label").attr('class', 'sub_label')
  8. $(".sub_label checked").attr('class', 'sub_label')
  9.  
  10. });
  11.  
  12. $('input[type=checkbox]').trigger('click');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement