Possible Duplicate:
Select elements with class except one with specific id
I have to select type select of a form but I want to discard the ID with a name Like a word.
I have:
$("select").onchange(function(){
alert("change");
});
I’d like type of
$("select minus select with ID like 'noChange'").onchange(function(){
alert("change");
});
Tnx tnx
Use
:not():Or, if
noChangeis part of the ID and not the exact ID: