I got a question about the select box in HTML where I can't seem to find the answer on with Google.
I have a select html field with 1000 options:
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
....
Now I can show the visitor all the options in 1 select box but when he needs the number 877 he needs to scroll all the way down. Is it possible to transform the select box (with javascript, or something else, PHP is also an option) to make the select box step based. So for example first you get 5 choices:
<option value="1-200">1-200</option>
<option value="201-400">201-400</option>
<option value="401-600">401-600</option>
<option value="601-800">601-800</option>
<option value="801-1000">801-1000</option>
And when he selects one of those it becomes 1-50, 51-100, 101-150, 151-200
I searched if Chosen could do this but I don't see an option where this is possible. You could search for a number but that is my last option if this isn't possible.