Je sais comment obtenir des éléments avec un attribut particulier:
$("#para [attr_all]")
Mais comment puis-je obtenir les éléments SANS un attribut particulier? J'essaie
$("#para :not([attr_all])")
Mais ça ne marche pas. Quelle est la bonne façon de faire cela?
Laissez-moi vous donner un exemple:
<div id="para">
<input name="fname" optional="1">
<input name="lname">
<input name="email">
</div>
jQuery:
$("#para [optional]") // give me the fname element
$("#para :not([optional])") //give me the fname, lname, email (fname should not appear here)