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'm trying to use this code to insert the Facebook like-box for my page:

<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like-box href="http://www.facebook.com/pages/xxxxx/xxxxx" width="285" show_faces="true" stream="false" header="false"></fb:like-box>

And i'm trying to add it to a jQuery modal dialog, so i'm doing it like this:

    <script type="text/javascript">
    $(document).ready(function() {
    $( "#facebook" ).dialog({
        autoOpen: true,
        height: 350,
        width: 350,
        modal: true

    });
    });
    </script>

<div id="facebook" title="Like us">
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like-box href="http://www.facebook.com/pages/xxxxx/xxxxx" width="285" show_faces="true" stream="false" header="false"></fb:like-box>
</div>

It doesn't display in the dialog, anyone knows what's the problem?

Thanks,

share|improve this question
Does it work if you put it outside the dialog? – manuelpedrera Mar 2 '11 at 22:25
Yes, it does... – hoverhand Mar 2 '11 at 22:28
I've created test fiddle if anyone wants to try: jsfiddle.net/AYE8A – user194076 Mar 2 '11 at 22:31
fiddle is pretty useless as you need the fbml xmlns – hoverhand Mar 2 '11 at 22:33
Just noticed that it is working, but only in FF and IE (I was checking Chrome) – hoverhand Mar 2 '11 at 22:42

1 Answer

To help troubleshoot your question, it might be necessary to see the whole page you want this script to run on. It might be an issue with not loading the jQuery and jQuery UI (dialog is part of jQuery UI) framework or some other jQuery/Javascript code or CSS that's causing a problem.

share|improve this answer
jQuery is working. Dialog is opened on page load.. the ui is also working as I can see the theme I chose, it's just that the like-box is not working within that dialog – hoverhand Mar 2 '11 at 22:35
As @Fozzyuw said, it's very difficult to help without seeing the code here. – manuelpedrera Mar 2 '11 at 22:36

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.