Pages

Wednesday 16 April 2014

Adding and Removing item from Dropdown list using Jquery

Remove all item from dropdownlist
     $("#selectClient").empty();

Add item to dropdown list
var newOption = "";

$("#selectClient").append(newOption);

No comments:

Post a Comment