Hi
I have a jquery script below to swap a select box based on an option, it works fine in Firefox but it’s not doing anything in IE, but IE is not showing any errors either, I was really hoping someone could point me in the right direction. Any help would be hugely appreciated:
$(".initDealers").change(function () {
if ($('.initDealers option:selected').val() == "All" ) {
$('.allDealers').show();
$('.initDealers').hide();
} else {
$('.initDealers').show();
}
{
}
});
Rachel