Pages

Showing posts with label Delete listbox items. Show all posts
Showing posts with label Delete listbox items. Show all posts

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();
});