mcmwhfy
mcmwhfy

Reputation: 1686

Call a js function inside of modal window

I'm applying some css3 effects using a function it works fine on body page but my problem is how to call that function inside a modal window? created dynamic by Ajax.

this is the function:

$(document).ready(function() {
    if (window.PIE) {
        $('.secondary, .primary, .light_gray_sub').click(function() {
            PIE.attach(this);
            alert("alert XXX");
        });
    }
});

Upvotes: 0

Views: 1235

Answers (1)

Johnny Craig
Johnny Craig

Reputation: 5002

i think what your saying is u want the styling to be on the elements you retrieved through ajax:

$(document).ready(function() {
    if (window.PIE) {
        go();
    }

});
function go(){
    $('.secondary, .primary, .light_gray_sub').click(function() {
            PIE.attach(this);
            alert("alert XXX");
     });
 }

$.ajax({
      url: 'ajax/test.html',
      success: function(data) {
            //append the data to the body here
            go();
      }
});

Upvotes: 1

Related Questions