[jQuery] Selector filters using less-than/greater-than operators?
Hello everyone,
I'm wondering if there is a way to select element with an attribute
filter that uses greater-than, or less-than operators. Something like
this:
$("element[attribute<=value]");
I don't see anything equivalent in the documentation...if this doesn't
exist, are there any simple alternatives (other than looping through
elements and checking the values)?
Thanks for any suggestions.