Could somebody recommend some of the best strategies they've used to populate items in an HTML select list on the client side?
I'm using an ASP.NET MVC application and making use of jQuery.
The select list in question is simply a collection of strings which will need to be saved with the model.
I'd rather not have a server call for every item added and simply have everything posted once the form is saved.
Are there any plugins available that can make this easier? Would it be best to write my own pop-up form?