I have single html file that contains 10000 list items that needs to be in single html file
order by categories for example ordered by the ABC not all of them needs to be shown.
each time only 500 ( so the other are hidden ) .
what way or method can efficiently rearrange me the list in this way ?
java script ? css?
its all in client side , no server side.
You can use this to alphabetize your list:
Working demo: http://jsfiddle.net/4bm57/6/
To filter the list:
This code uses Array methods not available in some older browsers. For this code to work in IE8 or earlier, see the compatibility sections for
Array.map()andArray.forEach().