Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to add a button onclick event to a button tag when I load my Fancybox popup using the following code:

var processOrder = function(id) {
    $('#processPopupLink').fancybox({
        'hideOnContentClick': false,
        'frameWidth': 850,
        'frameHeight': 695
    }).click();

    $('#processComplete').click(function() {
        alert('debug');
    });
}

However, it's not showing the message box when I click the button, I have no idea why it is not working, any help would be appreciated.

EDIT

I'm not wanting it to click the button, I'm wishing for it to add an onclick to an existing button on the fancybox popup, when the fancybox popup is opened.

share|improve this question
Does #processComplete exist? What about moving the assignment of the click handler before the fancybox thing? – Felix Kling May 27 '10 at 9:55
Am I being blind or does the #processComplete ever actually get clicked by that code...? – GenericTypeTea May 27 '10 at 9:59
Updated my answer in response to your edit. – GenericTypeTea May 27 '10 at 10:06

1 Answer

up vote 3 down vote accepted

From the Fancybox API:

onComplete - Will be called once the content is displayed.

$('#processPopupLink').fancybox({
    onComplete: function() { 
        $('#processComplete').click(function() 
            {
               alert('debug');
            }); 
    }
});
share|improve this answer
Nice one, had to update Fancybox, and this solution worked. – Tom Bell May 27 '10 at 12:56
No problem matey. – GenericTypeTea May 27 '10 at 13:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.