I cant seem to get the following working:
$('input:not([type=radio][type=checkbox])').live('click', function() {
alert("You haven't clicked a radio or checkbox!");
});
Have tried a few different syntax’s, can anyone help me out on this one.
Cheers
Charlie
You’re confusing the multiple selector with the multiple attribute selector. You should write:
The multiple attribute selector
[type=radio][type=checkbox]matches the elements whosetypeattributes are equal to bothradioandcheckbox, which cannot happen in this universe.