I am working on searching lexile number ranges.
ccl.properties shows
lex 1=9903 r=r
The 'r=r' bit means that I should be able to search using a numeric range separated by a dash, e.g.
500-600
Should return any numeric results from 500 to 600.
The following query works:
However, when I try adding that as an item in the search menu, as follows:
$(document).ready(function(){
//add lexile to search pull downs
$("select[name='idx']").append("<option value='lex,st-numeric'>Lexile (e.g. 600 or 550-650 )</option>");
});
That gets munged... the url reads
And I get the following message:
No results found
No results match your search for 'lex,st-numeric: 500-600'.
--Barton