Key Events On Radio And Checkboxes In Chrome Not Working
I have a page which contains input fields of type radio and checkbox. I want to be able to trigger an event when the user presses a key whilst one of these input fields are focused
Solution 1:
Have you tried bind the event directly on the input:
$('.duplicate input:checked').click(/*...*/)
Post a Comment for "Key Events On Radio And Checkboxes In Chrome Not Working"