Почему jQuery .blur () останавливает элемент в Firefox 8.0? - PullRequest
0 голосов
/ 10 ноября 2011
$('.versionSelectWizardCoti').live('focus',function() {
    currentValSelect2 = $(this).parent().parent().parent().attr('id');
    $(this).blur();
});

Вызов .blur() работает в IE7 + и Chrome, но не работает в FF 8.0. Элемент select зависает и ничего не показывает.

1 Ответ

0 голосов
/ 10 ноября 2011

Попробуйте изменить $(this).parent().parent().parent().attr('id'); на $(this).closest('your element class/id').attr('id');

...