Hey folks,
I have a listbox containing "all" the items and a second listbox that will contain "selected" items. I want to have it so that double-clicking an item in the "all" listbox adds that item to the "included" listbox.
Currently i have :
$(document).ready(function()
{
$('#AllAirlines option').dblclick(AddAirline);
}
function AddAirline()
{
$('#AllAirlines option:selected').remove().appendTo('#AirlineList');
}
Which works fine in FireFox... but in IE8 etc, fails. Any ideas why?