checkbox

jquery snippet to check checkboxes on hover

I just run this on firebug and it saves me a lot of time when there's a lot of checkboxes I have to check ( admin/user/permissions after enabling content permissions, for example )

$('input').hover(function() {
  $(this).attr('checked', true);
}, function(){ });

Syndicate content