<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How To Make A Friendly Facebook Like Button</title>
	<atom:link href="http://dorianroy.com/blog/2010/04/how-to-make-a-friendly-facebook-like-button/feed/" rel="self" type="application/rss+xml" />
	<link>http://dorianroy.com/blog/2010/04/how-to-make-a-friendly-facebook-like-button/</link>
	<description>just another dev blog</description>
	<lastBuildDate>Wed, 11 Jan 2012 18:56:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
	<item>
		<title>By: Joe</title>
		<link>http://dorianroy.com/blog/2010/04/how-to-make-a-friendly-facebook-like-button/comment-page-1/#comment-8491</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Wed, 11 Jan 2012 18:56:52 +0000</pubDate>
		<guid isPermaLink="false">http://dorianroy.com/blog/?p=10#comment-8491</guid>
		<description>The width always breaks my sites. Why does it have to be 450 wide from Facebook&#039;s api?</description>
		<content:encoded><![CDATA[<p>The width always breaks my sites. Why does it have to be 450 wide from Facebook&#8217;s api?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Homer Altmark</title>
		<link>http://dorianroy.com/blog/2010/04/how-to-make-a-friendly-facebook-like-button/comment-page-1/#comment-6733</link>
		<dc:creator>Homer Altmark</dc:creator>
		<pubDate>Sun, 23 Oct 2011 20:04:52 +0000</pubDate>
		<guid isPermaLink="false">http://dorianroy.com/blog/?p=10#comment-6733</guid>
		<description>Hey! I only desired to say your weblog has definitely been helpful to me and I thank you for your time and work working on it. Superior Luck!</description>
		<content:encoded><![CDATA[<p>Hey! I only desired to say your weblog has definitely been helpful to me and I thank you for your time and work working on it. Superior Luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Boyce</title>
		<link>http://dorianroy.com/blog/2010/04/how-to-make-a-friendly-facebook-like-button/comment-page-1/#comment-6568</link>
		<dc:creator>Mike Boyce</dc:creator>
		<pubDate>Tue, 18 Oct 2011 06:32:55 +0000</pubDate>
		<guid isPermaLink="false">http://dorianroy.com/blog/?p=10#comment-6568</guid>
		<description>This works great!  Can it be modified to work with the Comments plugin?</description>
		<content:encoded><![CDATA[<p>This works great!  Can it be modified to work with the Comments plugin?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: top hat</title>
		<link>http://dorianroy.com/blog/2010/04/how-to-make-a-friendly-facebook-like-button/comment-page-1/#comment-5991</link>
		<dc:creator>top hat</dc:creator>
		<pubDate>Mon, 03 Oct 2011 10:52:31 +0000</pubDate>
		<guid isPermaLink="false">http://dorianroy.com/blog/?p=10#comment-5991</guid>
		<description>Is it possible to hide the part the says &quot;Be the first of your friends to like this.&quot;?</description>
		<content:encoded><![CDATA[<p>Is it possible to hide the part the says &#8220;Be the first of your friends to like this.&#8221;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Optikool</title>
		<link>http://dorianroy.com/blog/2010/04/how-to-make-a-friendly-facebook-like-button/comment-page-1/#comment-5820</link>
		<dc:creator>Optikool</dc:creator>
		<pubDate>Thu, 29 Sep 2011 20:45:13 +0000</pubDate>
		<guid isPermaLink="false">http://dorianroy.com/blog/?p=10#comment-5820</guid>
		<description>Sorry left out the link... :-)

&lt;code&gt;
var fbURL = &quot;//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.mysite.com%2Fjobs%2F&amp;send=false&amp;layout=button_count&amp;width=120&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font&amp;height=21&quot;;
		
	jQuery(document).ready(function($) {
		$(&#039;.like_button_a_link&#039;).live(&#039;click&#039;, function() {
			var container = $(this).parent();
			var w = 120;
			var h = 27;
			fbFrame = document.createElement(&quot;IFRAME&quot;); 
			fbFrame.setAttribute(&quot;src&quot;, fbURL);
			fbFrame.setAttribute(&quot;scrolling&quot;, &quot;no&quot;);
			fbFrame.setAttribute(&quot;frameBorder&quot;, 0);
			fbFrame.setAttribute(&quot;allowTransparency&quot;, true);
			fbFrame.style.border = &quot;none&quot;;
			fbFrame.style.overflow = &quot;hidden&quot;;
			fbFrame.style.width = w; 
			fbFrame.style.height = h; 
			$(this).parent().empty().html(fbFrame);
		});
	});

&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Sorry left out the link&#8230; <img src='http://dorianroy.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><code><br />
var fbURL = "//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.mysite.com%2Fjobs%2F&#038;send=false&#038;layout=button_count&#038;width=120&#038;show_faces=false&#038;action=like&#038;colorscheme=light&#038;font&#038;height=21";</p>
<p>	jQuery(document).ready(function($) {<br />
		$('.like_button_a_link').live('click', function() {<br />
			var container = $(this).parent();<br />
			var w = 120;<br />
			var h = 27;<br />
			fbFrame = document.createElement("IFRAME");<br />
			fbFrame.setAttribute("src", fbURL);<br />
			fbFrame.setAttribute("scrolling", "no");<br />
			fbFrame.setAttribute("frameBorder", 0);<br />
			fbFrame.setAttribute("allowTransparency", true);<br />
			fbFrame.style.border = "none";<br />
			fbFrame.style.overflow = "hidden";<br />
			fbFrame.style.width = w;<br />
			fbFrame.style.height = h;<br />
			$(this).parent().empty().html(fbFrame);<br />
		});<br />
	});</p>
<p></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Optikool</title>
		<link>http://dorianroy.com/blog/2010/04/how-to-make-a-friendly-facebook-like-button/comment-page-1/#comment-5819</link>
		<dc:creator>Optikool</dc:creator>
		<pubDate>Thu, 29 Sep 2011 20:44:01 +0000</pubDate>
		<guid isPermaLink="false">http://dorianroy.com/blog/?p=10#comment-5819</guid>
		<description>Hi I&#039;m using a modified version of your script to get the Facebook Like button to show up in a Shadowbox popup. I have it working as expected, however, when I switch the layout from standard to button_count, I&#039;m still seeing the standard layout. Do you get the same result if you did the same? The reason I switch to button_count is because I don&#039;t want to show the text of the standard layout, only the number of likes. Here is my code...

&lt;code&gt;
jQuery(document).ready(function($) {
		$(&#039;.like_button_a_link&#039;).live(&#039;click&#039;, function() {
			var w = 120;
			var h = 27;
			fbFrame = document.createElement(&quot;IFRAME&quot;); 
			fbFrame.setAttribute(&quot;src&quot;, fbURL);
			fbFrame.setAttribute(&quot;scrolling&quot;, &quot;no&quot;);
			fbFrame.setAttribute(&quot;frameBorder&quot;, 0);
			fbFrame.setAttribute(&quot;allowTransparency&quot;, true);
			fbFrame.style.border = &quot;none&quot;;
			fbFrame.style.overflow = &quot;hidden&quot;;
			fbFrame.style.width = w; 
			fbFrame.style.height = h; 
			$(this).parent().empty().html(fbFrame);
		});
	});

&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Hi I&#8217;m using a modified version of your script to get the Facebook Like button to show up in a Shadowbox popup. I have it working as expected, however, when I switch the layout from standard to button_count, I&#8217;m still seeing the standard layout. Do you get the same result if you did the same? The reason I switch to button_count is because I don&#8217;t want to show the text of the standard layout, only the number of likes. Here is my code&#8230;</p>
<p><code><br />
jQuery(document).ready(function($) {<br />
		$('.like_button_a_link').live('click', function() {<br />
			var w = 120;<br />
			var h = 27;<br />
			fbFrame = document.createElement("IFRAME");<br />
			fbFrame.setAttribute("src", fbURL);<br />
			fbFrame.setAttribute("scrolling", "no");<br />
			fbFrame.setAttribute("frameBorder", 0);<br />
			fbFrame.setAttribute("allowTransparency", true);<br />
			fbFrame.style.border = "none";<br />
			fbFrame.style.overflow = "hidden";<br />
			fbFrame.style.width = w;<br />
			fbFrame.style.height = h;<br />
			$(this).parent().empty().html(fbFrame);<br />
		});<br />
	});</p>
<p></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://dorianroy.com/blog/2010/04/how-to-make-a-friendly-facebook-like-button/comment-page-1/#comment-5210</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Tue, 20 Sep 2011 12:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://dorianroy.com/blog/?p=10#comment-5210</guid>
		<description>I tried this and it turned in to &#039;like&#039; button after clicking on the button.In above example, where it says &quot;Try it&quot; that button also gets turned in to button with text &quot;like&quot; after clicking the button.</description>
		<content:encoded><![CDATA[<p>I tried this and it turned in to &#8216;like&#8217; button after clicking on the button.In above example, where it says &#8220;Try it&#8221; that button also gets turned in to button with text &#8220;like&#8221; after clicking the button.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dorian</title>
		<link>http://dorianroy.com/blog/2010/04/how-to-make-a-friendly-facebook-like-button/comment-page-1/#comment-5120</link>
		<dc:creator>Dorian</dc:creator>
		<pubDate>Sun, 18 Sep 2011 19:42:17 +0000</pubDate>
		<guid isPermaLink="false">http://dorianroy.com/blog/?p=10#comment-5120</guid>
		<description>@Hannah: That&#039;s right, you have to paste it into every single page. I always wanted to make a Wordpress Plugin for this but never found the time. But you can check out the link from ragtek above. It&#039;s a similar project from a german tech magazine, built as a Wordpress plugin. Here&#039;s the english translation of the instructions:
http://translate.google.com/translate?sl=auto&amp;tl=en&amp;js=n&amp;prev=_t&amp;hl=en&amp;ie=UTF-8&amp;layout=2&amp;eotf=1&amp;u=http%3A%2F%2Fwww.heise.de%2Fextras%2Fsocialshareprivacy%2F</description>
		<content:encoded><![CDATA[<p>@Hannah: That&#8217;s right, you have to paste it into every single page. I always wanted to make a WordPress Plugin for this but never found the time. But you can check out the link from ragtek above. It&#8217;s a similar project from a german tech magazine, built as a WordPress plugin. Here&#8217;s the english translation of the instructions:<br />
<a href="http://translate.google.com/translate?sl=auto&#038;tl=en&#038;js=n&#038;prev=_t&#038;hl=en&#038;ie=UTF-8&#038;layout=2&#038;eotf=1&#038;u=http%3A%2F%2Fwww.heise.de%2Fextras%2Fsocialshareprivacy%2F" rel="nofollow">http://translate.google.com/translate?sl=auto&#038;tl=en&#038;js=n&#038;prev=_t&#038;hl=en&#038;ie=UTF-8&#038;layout=2&#038;eotf=1&#038;u=http%3A%2F%2Fwww.heise.de%2Fextras%2Fsocialshareprivacy%2F</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hannah</title>
		<link>http://dorianroy.com/blog/2010/04/how-to-make-a-friendly-facebook-like-button/comment-page-1/#comment-5072</link>
		<dc:creator>Hannah</dc:creator>
		<pubDate>Sat, 17 Sep 2011 17:11:01 +0000</pubDate>
		<guid isPermaLink="false">http://dorianroy.com/blog/?p=10#comment-5072</guid>
		<description>did I understand it right, that I have to implement the html code on every page where I want the button to appear?

is this available as a wordpress plugin? 

I don&#039;t know how to program with html to make my own plugin, unfortunatelly, and as far as I understood the simple free account doesn&#039;t let me do much html coding anyway?

I just figured out that I can switch from visual to html mode and thus are more flexible when inserting pictures into my posts... but I wouldn&#039;t want to insert a like button there every single time...

anyway, thanks for your attention!</description>
		<content:encoded><![CDATA[<p>did I understand it right, that I have to implement the html code on every page where I want the button to appear?</p>
<p>is this available as a wordpress plugin? </p>
<p>I don&#8217;t know how to program with html to make my own plugin, unfortunatelly, and as far as I understood the simple free account doesn&#8217;t let me do much html coding anyway?</p>
<p>I just figured out that I can switch from visual to html mode and thus are more flexible when inserting pictures into my posts&#8230; but I wouldn&#8217;t want to insert a like button there every single time&#8230;</p>
<p>anyway, thanks for your attention!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Online Reputation Management</title>
		<link>http://dorianroy.com/blog/2010/04/how-to-make-a-friendly-facebook-like-button/comment-page-1/#comment-4781</link>
		<dc:creator>Online Reputation Management</dc:creator>
		<pubDate>Wed, 07 Sep 2011 10:48:18 +0000</pubDate>
		<guid isPermaLink="false">http://dorianroy.com/blog/?p=10#comment-4781</guid>
		<description>Really, you did well and every one can understand this code from post due to each steps are easy to understand and can i apply this code on other blog site like wordpress and blogger etc.keep sharing more this kind information..</description>
		<content:encoded><![CDATA[<p>Really, you did well and every one can understand this code from post due to each steps are easy to understand and can i apply this code on other blog site like wordpress and blogger etc.keep sharing more this kind information..</p>
]]></content:encoded>
	</item>
</channel>
</rss>

