i have this code :
$('body').live('mousemove mouseover', function () {
$("#parent_task").multiselect({
selectedList: 4,
click: function(event, ui){
var cntInput=$("#child_task").multiselect("widget").find('input[value='+ui.value+']').parent('label');
if(ui.checked){ cntInput.hide() }else{cntInput.show() }
}
}).multiselectfilter();
$("#child_task").multiselect({
selectedList: 4,
click: function(event, ui){
var cntInput=$("#parent_task").multiselect("widget").find('input[value='+ui.value+']').parent('label');
if(ui.checked){ cntInput.hide() }else{cntInput.show() }
}
}).multiselectfilter();
});
how is possible to start multiselect after ajax load , right now i'm using $('body').live('mousemove mouseover', function () {
, but is biding after mouse over or mouse move , and it doesn't look good , exist another way ? thank you ;)
link to plugin http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/
Sorry for my english :)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…