felito Posted April 20, 2012 Share Posted April 20, 2012 hi I am trying this code, but apparently something is wrong: <a class = "perfil_1"><h3>Luciana</h3> </a> <a class = "perfil_2"><h3>Luciana</h3></a> <a class = "perfil_3"><h3>Luciana</h3> </a> <div id="dialog_1"> <p>Lorem ipsum dolor sit amet</p> </div> <div id="dialog_2"> <p>Lorem ipsum dolor sit amet</p> </div> <div id="dialog_3"> <p>Lorem ipsum dolor sit amet</p> </div> for (var i = 1; i <= 4; i++) { $('#dialog_' + i).dialog({ autoOpen: false, show: "slide", hide: "explode" }); $('.perfil_' + i).on("click", "h3" , function () { $('#dialog_'+i).dialog('open'); return false; }); } http://jsfiddle.net/JbFZD/ > any idea? Link to comment https://forums.phpfreaks.com/topic/261324-jquery-ui-problem-with-dialog/ Share on other sites More sharing options...
felito Posted April 20, 2012 Author Share Posted April 20, 2012 this solve my problem. http://jsfiddle.net/X9uvK/ thanks Link to comment https://forums.phpfreaks.com/topic/261324-jquery-ui-problem-with-dialog/#findComment-1339141 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.