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?