I have a question regarding the facebook send button
URL to page being tested: www.mydomain.com/article.cfm?id=3302
The button disappears using the following dynamic url:
CODE
<div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like href="http://www.mydomain.com/article.cfm?id=<cfoutput>#w_q_article.iArticleID#</cfoutput>" send="true" width="450" show_faces="true" font=""></fb:like>
When the URL is hard coded it shows up
CODE
<div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like href="http://wispubs.com" send="true" width="450" show_faces="true" font=""></fb:like>
I also tried to make the URL with CF and then output it within the href:
CODE
<cfset #dyurl# = "http://www.mydomain.com/article.cfm?id="&#w_q_article.iArticleID#>
<div id="fbcon" style="position:relative;bottom:18px;">
<div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like href="<cfoutput> #dyurl# </cfoutput>" send="true" width="450" show_faces="true" font=""></fb:like>
</div><!--end fbcon -->
<div id="fbcon" style="position:relative;bottom:18px;">
<div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like href="<cfoutput> #dyurl# </cfoutput>" send="true" width="450" show_faces="true" font=""></fb:like>
</div><!--end fbcon -->
Please let me know if you have any insight. Thanks









