• Hi, I think it’s just me, but can you see your demo on Firefox 26.0?

    Live Demo on your site http://crunchify.com/facebook-members/
    It works on Chrome/Chromium and Internet Explorer but not in Firefox, at least for me.

    I’m having a similar problem with another website, that’s why I’m asking.

    The HTML code I see in firefox “Inspect element” is:

    <div id="likeboxwrap" style="width:568px; height:328px; background: #F8F8FF; border:1px solid #cc0000; overflow:hidden;">
    
        <iframe scrolling="no" frameborder="0" allowtransparency="true" style="border:none; overflow:hidden; width:570px; height:330px; margin:-1px;" src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww…light&show_faces=true&border_color&stream=false&header=false">
            #document
                <html></html>
        </iframe>
    
    </div>

    P.S. The facebook FBML should go into <body>, not in <head> tag. The <div> tag breaks the w3c validation (file facebook-members.php):

    if (!($fm_appid == "")) {
            echo '<div id="fb-root"></div>' . "\n";
            echo '<script>(function(d, s, id) {' . "\n";
            echo 'var js, fjs = d.getElementsByTagName(s)[0];' . "\n";
            echo 'if (d.getElementById(id)) return;' . "\n";
            echo 'js = d.createElement(s); js.id = id;' . "\n";
            echo 'js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=' . $fm_appid . '";' . "\n";
            echo 'fjs.parentNode.insertBefore(js, fjs);' . "\n";
            echo '}(document, \'script\', \'facebook-jssdk\'));</script>' . "\n";
        }

    http://wordpress.org/plugins/facebook-members/

The topic ‘Firefox 26.0 does not work’ is closed to new replies.