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 used this jQuery plugin:

http://www.asual.com/jquery/address/

Eventually it has poor documentation. It doesn't want to bind on ajax-loaded content. For example, a link: a link from an ajax content which points to another page doesn't load via ajax but the window loads that page instead.

How do you bind the plugin for ajax-loaded elements?


Live Demo

share|improve this question

1 Answer

You can wrap the plugin in a function, and use it in $.ajaxSuccess callback:

var bindAddress = function (elem) {
    var $elem = $(elem);
    if ($elem.data('isAddressed')) {
        return;
    }
    $elem.address();
};

$.ajaxSuccess(function () {
    $(yourElementSelector).each(bindAddress);
});

Remember, don't use $(yourElementSelector).address() method, use $(yourElementSelector).each(bindAddress) instead.

share|improve this answer
Hi, could you help me check how come it works on this site ? – We are the World Apr 28 '12 at 11:37
@JackSpairow Sorry, I'm in china and there is a fucking firewall between my computer and your website. – Ethan Zhang Apr 28 '12 at 11:56
i've uploaded the script here – We are the World Apr 28 '12 at 22:49

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.