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,