To make it clear what I\'m asking, here is my example (fiddle).
I have a list of ~500 random names. I have an input at the top that has live-style searching. On ever
Many JS mvvm frameworks such as Reactjs and Vuejs has applied the 'virtual DOM mechanism'.It will batch all DOM updates in one event loop and save you from the penalty of frequent DOM operations.I think you can have a loot at that implementations.