A have a blog built on a custom framework in PHP. On the main page is a loop of the most recent posts. I have a Facebook Like button on each of these posts. To reduce load time and bugs I have implemented an AJAX hover effect that doesn't load the Like buttons unless the user actually hovers over the post element. It works great.
The issue is that the like button doesn't always appear when I am referencing internal links. If I change the URL to something outside of my site then it loads 100% of the time.
For example. The code below will not work. (please not the url)
<iframe scrolling="no" frameborder="0"
src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.mydomain.org%2Fblogpost1&send=false&layout=button_count&width=90&show_faces=false&action=like&colorscheme=light&font&height=20"
allowtransparency="true" style="border:none; width:90px; height:20px;"></iframe>
But this code will work. (please not the url)
<iframe scrolling="no" frameborder="0"
src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.yahoo.com%2Fsubpage1&send=false&layout=button_count&width=90&show_faces=false&action=like&colorscheme=light&font&height=20"
allowtransparency="true" style="border:none; width:90px; height:20px;"></iframe>