I have implemented the Select2
JQuery Plugin to handle a list of 3000 products as master data. In order to load these values into a dropdown select option using Javascript, I dynamically added table rows to populate the product list.
However, when I attempted to add 5 or more rows, the browser crashed automatically.
<select>
<option value="0">[SELECT]</option>
<option value="1">Product1</option>
<option value="2">Product2</option>.....Etc
</select>
If anyone has suggestions on how to efficiently load such a large product list and/or alternative search options, please feel free to share. Thank you.