Guest User

Untitled

a guest
Jul 21st, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. $('#checkbox').unbind();
  2.  
  3. $('#checkbox').attr('disabled', true);
  4.  
  5. <input type="checkbox" disabled="disabled" />
  6.  
  7. $('#thecheckbox').unbind('click'); // removes all 'click' event handlers from the element
  8.  
  9. $('.selectorToCheckbox').bind('click mouseover', function (e) {
  10. e.preventDefault();
  11. });
Add Comment
Please, Sign In to add comment