Just want to ask this.
I have a jQuery that move listbox item to another listbox. An its working fine the item was remove. Sample: I remove item in listbox A and it was added to listbox B.
But here is now the problem, when I tried to check each item in listbox A, I noticed that all items that was removed was still there. But i can see in my eyes that it was removed. but when I tried to run a code to check each items - all item that was removed was still there.
Please tell me whats the problem with this. Below is my jQuery code
$('#btnRemove').click(
function (e) {
$('#lstSelectedCol > option:selected').appendTo('#lstAvailableCol');
//$(this).remove();
e.preventDefault();
});