[jQuery] Selecting nodes using node value within a range
Let's say I have a bunch of DIVs that look like this:
<div id='jQueryTestDiv'>
<div>1</div>
<div>13</div>
<div>34</div>
<div>23</div>
<div>43</div>
<div>12</div>
<div>22</div>
<div>43</div>
<div>232</div>
<div>5</div>
<div>9</div>
<div>99</div>
<div>192</div>
<div>27</div>
<div>47</div>
<div>768</div>
<div>45</div>
</div>
Is there a way I can select only those that have a value that falls
within a range? Using XPath, I would do it using:
//div[.>13 and .<99]
but that doesn't work (not surprisingly) nor does any approximation
thereof. Is there any way I can get only those divs who's value is
within a range?
thnx,
Christoph