Why I try to load a fancybox, the content isn't loaded. The problem only occur when I use facebook markup.
I also try with colorbox and got the same result. Is there anything I missing ?
I got the following :
<script type="text/javascript">
$(document).ready(function () {
$("#shareWithFriends").fancybox({
'titlePosition': 'inside',
'transitionIn': 'none',
'transitionOut': 'none'
});
});
</script>
<a class="inline" id="shareWithFriends" href="#inline1">Share with your friends</a>
<div style="display: none;">
<div id="inline1" style="width:500px;height:550px;">
<fb:serverfbml width="615">
<script type="text/fbml">
<fb:request-form action="..."
method="POST"
invite="true"
type="..."
content=...<fb:req-choice url='...' label='....' />
<fb:multi-friend-selector showborder="false"
bypass="cancel"
cols=4
rows=1
actiontext="..."/>
</fb:request-form>
</script>
</fb:serverfbml>
</div>
</div>