I’m selecting a form that doesn’t have the name “someform”, like this:
$("form[name!=someform]").bind("keyup", function(e){
[some code]
});
What if I want to select a form that doesn’t have multiple names, like “someform1” or “someform2”?
How do I do that?
Just supply multiple attribute selectors.
Although it would be easier to apply classes to distinguish different forms and use those.