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? Quote Link to comment 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 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.