I current have a jQuery delegate that does something to all of the input selectors that are not submit input selectors. How do you add an OR so that it also handles another type like select?
Current function:
$('#test_form').delegate("input:not([id*='_submit'])", 'blur', function(event) {
// Does something
});
Thanks!
Comma
,in selector behaves likeOR:You can read more about multiple selector here: