У меня есть диалог jquery с вводимым текстом и некоторыми флажками.
Проблема в том, что я не могу установить фокус или ввести текст на входах,
Я использую ядро jqueryui 1.7.3 и 1.3.2, firefox 3.6.10?
В IE проблема не существует, так это ошибка jquery или firefox?
Какие-нибудь решения?
спасибо
код:
$('#corr_types').dialog({
width:160,
title: 'Set correction type',
open:function()
{
//input temporani della form
$(this).find("input:radio").attr('checked','');
$(this).find("input:radio[value="+type+"]").attr('checked','checked');
$(this).find("input:checkbox").attr('checked',mpc);
$(this).find("input:text").val(catno).focus();
},
close: function() {
$(this).dialog( "destroy" );
}
});
<div id="corr_types" class="corrtypes" style="display:none;" >
<input type=checkbox >MPC<br /> Catno. <input type="text" size=10
</div>