Pages

Tuesday 11 March 2014

Delete Listbox selected Items using Jquery

/*On button click delete ListBox selected Item here @btnDeleteIncluded is delete button Id and #IncludedList is listbox Id */
$("#btnDeleteIncluded").click(function () {
$("#IncludedList").find('option:selected').remove();
});

No comments:

Post a Comment