Jump to content

jquery UI problem with dialog


felito

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.