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.

This page, when put in Facebook status textbox, grabs the thumbnail, description and page title with my name and thumbnail into the Facebook Sharer textbox:

https://twitter.com/#!/ftwolf

However, it is obviously an AJAX-loaded page (as you can tell by the hash fragment URL). How can I accomplish the same thing on a page that loads via AJAX?

share|improve this question

2 Answers

You can use jQuery (Twitter users jquery, too, probably) and its plugin address. It has very simple implemention

        $.address.init(function(event) {
            // Initializes plugin support for links
            $('a:not([href^=http])').address();
        }).change(function(event) {
            //do your stuff
        });
share|improve this answer

The Facebook crawler should work the same way as google's.

You can test your implementation with the Facebook linter

share|improve this answer
It does, and thanks for that link. I guess I'm doing it right. – Josh Aug 27 '11 at 16:29

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.