Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The code from official website seems only binds click event to links at first load. When a new page is loaded, all links seem to be unbinded so any further clicks will leave the page.

$('#example').tabs({
    load: function(event, ui) {
        $('a', ui.panel).click(function() {
            $(ui.panel).load(this.href);
            return false;
        });
    }
});

How to bind click events to links in every new page loaded into current tab?

share|improve this question

1 Answer

try live:

    $('a', ui.panel).live('click', function() {
        $(ui.panel).load(this.href);
        return false;
    });
share|improve this answer
it didn't work even after first time the tab is loaded – jack Oct 28 '09 at 3:52
worked flawlessly for me, thanks for the question and the answer. – digitaljoel Jan 13 '11 at 23:15

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.