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.

So I have refreshed a DIV - but previous stated elements such as Cufon (font replacement) are not active anymore. How do I achieve this?

    // Switch to home.
    $(".switch_home").live('click', function () {

        // Fade content out.
        $("div#content_hldr").fadeOut("fast", function () {

            // Load Home page in.
            $("div#content_hldr").load("content/content.home.php");

            // Cufon.replace('h2'); <----

            // Fade in the content.
            $("div#content_hldr").fadeIn("fast");

        });

    });

Commented what should happen, actually. Best scenario, I should be able to reload all previous elements and functions / events.

Is this possible?

Thanks!

share|improve this question

1 Answer

up vote 0 down vote accepted

Just apply Cufon (no idea what that is) to newly loaded-in elements within $.load's callback:

$("div#content_hldr").load("content/content.home.php", function() {
    $(".blah").Cufon();
});
share|improve this answer
Thanks. Cufon is a font-replacement. Loading custom fonts as a javascript object. – Roel Mar 5 '11 at 22:00

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.