jQuery select elements with value between x and y
- by Glide
Hello
<input value="1" />
<input value="10" />
<input value="9" />
<input value="4" />
<input value="5" />
I'd like to be able to do that kind of selection:
$('input[value between 6 and 11]');
Which would give me the 9 and 10.
Is there a way to do that ?