<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Clipboard Copy</title>
	<link>http://www.jeffothy.com/weblog/clipboard-copy/</link>
	<description>Things that are possibly better left written down...</description>
	<pubDate>Wed, 23 Jul 2008 19:40:18 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1</generator>

	<item>
		<title>By: 書比價開發日誌 &#187; 複製比價結果的網址</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-118</link>
		<author>書比價開發日誌 &#187; 複製比價結果的網址</author>
		<pubDate>Sun, 08 Jan 2006 15:44:50 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-118</guid>
					<description>[...] 更新: 在布丁天位大長輩的指點之下，現在 FireFox 也可以複製網址了，方法很暴力(應該是 xxx 等級)，有興趣者請參考這裡 [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] 更新: 在布丁天位大長輩的指點之下，現在 FireFox 也可以複製網址了，方法很暴力(應該是 xxx 等級)，有興趣者請參考這裡 [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: kcwu</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-234</link>
		<author>kcwu</author>
		<pubDate>Sun, 29 Jan 2006 13:20:09 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-234</guid>
					<description>Nice solution!

About the license, you said "this software is licensed under GPL".
Did you mean the javascript part, flash part, or both?</description>
		<content:encoded><![CDATA[<p>Nice solution!</p>
<p>About the license, you said &#8220;this software is licensed under GPL&#8221;.<br />
Did you mean the javascript part, flash part, or both?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: 網絡暴民 Jacky&#8217;s Blog &#187; 20060112網摘 - 「亞力cool」</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-482</link>
		<author>網絡暴民 Jacky&#8217;s Blog &#187; 20060112網摘 - 「亞力cool」</author>
		<pubDate>Sun, 12 Mar 2006 14:55:19 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-482</guid>
					<description>[...] Clipboard Copy 用 SWF 做一個 cross-browser 的 javascript copy 動作 [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Clipboard Copy 用 SWF 做一個 cross-browser 的 javascript copy 動作 [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jose Jorge</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-917</link>
		<author>Jose Jorge</author>
		<pubDate>Fri, 11 Aug 2006 23:17:35 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-917</guid>
					<description>Thank you thank you thank you, man, you're great. You don't have an idea of how much time I've been looking for a thing like this. Thank you really.
Regards and my best wishes from Mexico.
~Jose Jorge</description>
		<content:encoded><![CDATA[<p>Thank you thank you thank you, man, you&#8217;re great. You don&#8217;t have an idea of how much time I&#8217;ve been looking for a thing like this. Thank you really.<br />
Regards and my best wishes from Mexico.<br />
~Jose Jorge</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Scott</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-934</link>
		<author>Scott</author>
		<pubDate>Wed, 23 Aug 2006 23:40:54 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-934</guid>
					<description>Maybe I'm retarded, but can somebody tell me how I should actually call the copy() and what it is trying to copy exactly?  I don't really know javascript all that well and am confused on how to implement this.

Thanks</description>
		<content:encoded><![CDATA[<p>Maybe I&#8217;m retarded, but can somebody tell me how I should actually call the copy() and what it is trying to copy exactly?  I don&#8217;t really know javascript all that well and am confused on how to implement this.</p>
<p>Thanks</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jeffrey Larson</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-936</link>
		<author>Jeffrey Larson</author>
		<pubDate>Thu, 24 Aug 2006 14:26:38 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-936</guid>
					<description>Scott:

Welcome to the world of javascript! Here's an example of how you might implement this.

Make sure to include the js script (above) in your html first. Then you could call the copy function using a link for example.
&lt;code&gt;
&#60;form name="formtocopy" action=""&#62;
&#60;textarea name="texttocopy"&#62;
A whole bunch of text here that will be copied.
&#60;/textarea&#62;
&#60;br&#62;
&#60;a href="javascript:copy(document.formtocopy.texttocopy);"&#62;Copy the Text!&#60;/a&#62;
&#60;/form&#62;
&lt;/code&gt;

You don't HAVE to call the copy function from a link, you could call it from another javascript function if you wanted.  It will copy the value from whatever html element you pass as the argument to the function.

Hope that helps you.</description>
		<content:encoded><![CDATA[<p>Scott:</p>
<p>Welcome to the world of javascript! Here&#8217;s an example of how you might implement this.</p>
<p>Make sure to include the js script (above) in your html first. Then you could call the copy function using a link for example.<br />
<code><br />
&lt;form name="formtocopy" action=""&gt;<br />
&lt;textarea name="texttocopy"&gt;<br />
A whole bunch of text here that will be copied.<br />
&lt;/textarea&gt;<br />
&lt;br&gt;<br />
&lt;a href="javascript:copy(document.formtocopy.texttocopy);"&gt;Copy the Text!&lt;/a&gt;<br />
&lt;/form&gt;<br />
</code></p>
<p>You don&#8217;t HAVE to call the copy function from a link, you could call it from another javascript function if you wanted.  It will copy the value from whatever html element you pass as the argument to the function.</p>
<p>Hope that helps you.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Curtis</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-937</link>
		<author>Curtis</author>
		<pubDate>Thu, 24 Aug 2006 19:43:27 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-937</guid>
					<description>That's a great idea. Works perfect! Just so you know though, Mozilla has an "official" way to work with the clipboard as well. It's longer and uglier though. The URL is:

http://developer.mozilla.org/en/docs/Using_the_Clipboard</description>
		<content:encoded><![CDATA[<p>That&#8217;s a great idea. Works perfect! Just so you know though, Mozilla has an &#8220;official&#8221; way to work with the clipboard as well. It&#8217;s longer and uglier though. The URL is:</p>
<p><a href="http://developer.mozilla.org/en/docs/Using_the_Clipboard" rel="nofollow">http://developer.mozilla.org/en/docs/Using_the_Clipboard</a></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Matt</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-954</link>
		<author>Matt</author>
		<pubDate>Sat, 02 Sep 2006 02:18:30 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-954</guid>
					<description>I tried this and when i copy something it always pastes the text unknown. Here is how I want to use it.
&lt;code&gt;

&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>I tried this and when i copy something it always pastes the text unknown. Here is how I want to use it.<br />
<code></p>
<p></code></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jeff</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-966</link>
		<author>Jeff</author>
		<pubDate>Thu, 07 Sep 2006 15:56:15 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-966</guid>
					<description>This works great but isn't it only half the process?  Is there a similar method to paste in Firefox?  I have a paste function working great on IE but I believe as with copy, Firefox does not allow access to the clipboard to paste.</description>
		<content:encoded><![CDATA[<p>This works great but isn&#8217;t it only half the process?  Is there a similar method to paste in Firefox?  I have a paste function working great on IE but I believe as with copy, Firefox does not allow access to the clipboard to paste.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jeffrey Larson</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-967</link>
		<author>Jeffrey Larson</author>
		<pubDate>Thu, 07 Sep 2006 17:14:09 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-967</guid>
					<description>I haven't had the need to use a paste function in javascript, but you do have a good point Jeff.  I'll have to investigate this.</description>
		<content:encoded><![CDATA[<p>I haven&#8217;t had the need to use a paste function in javascript, but you do have a good point Jeff.  I&#8217;ll have to investigate this.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Web Chicanery &#187; Blog Archive &#187; Clipboard Copy Javascript</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-1746</link>
		<author>Web Chicanery &#187; Blog Archive &#187; Clipboard Copy Javascript</author>
		<pubDate>Tue, 14 Nov 2006 16:27:13 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-1746</guid>
					<description>[...] For the past two weeks I've been working on my side project 2prong.com, and in the process I found myself looking for a way to copy text into a users clipboard via Javascript. Thankfully I stumbled across Jeff Larson's page that included the 109 byte flash file necessary to pull this off. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] For the past two weeks I&#8217;ve been working on my side project 2prong.com, and in the process I found myself looking for a way to copy text into a users clipboard via Javascript. Thankfully I stumbled across Jeff Larson&#8217;s page that included the 109 byte flash file necessary to pull this off. [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Mark Percival</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-1776</link>
		<author>Mark Percival</author>
		<pubDate>Wed, 15 Nov 2006 13:08:29 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-1776</guid>
					<description>I reworked this code so it now works with Opera 8.5. By taking out the createTextRange and instead using the window.clipboardData it seems to now work in Opera/IE/Firefox with now errors or warnings.

I posted the full code on my &lt;a href="http://webchicanery.com/2006/11/14/clipboard-copy-javascript/" title="Clipboard Copy Code" rel="nofollow"&gt;site&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>I reworked this code so it now works with Opera 8.5. By taking out the createTextRange and instead using the window.clipboardData it seems to now work in Opera/IE/Firefox with now errors or warnings.</p>
<p>I posted the full code on my <a href="http://webchicanery.com/2006/11/14/clipboard-copy-javascript/" title="Clipboard Copy Code" rel="nofollow">site</a>.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Henry</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-1856</link>
		<author>Henry</author>
		<pubDate>Tue, 28 Nov 2006 18:58:59 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-1856</guid>
					<description>Hi Jeff,

This is really neat solution. Are both files, the flash and script, licensed under GPL?

Thanks,

Henry</description>
		<content:encoded><![CDATA[<p>Hi Jeff,</p>
<p>This is really neat solution. Are both files, the flash and script, licensed under GPL?</p>
<p>Thanks,</p>
<p>Henry</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: SKV</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-1890</link>
		<author>SKV</author>
		<pubDate>Thu, 30 Nov 2006 10:29:22 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-1890</guid>
					<description>Where is the source t othe _clipboard.swf? If you use GPL license of this code you must include the source...

But anyway thanks for the solution</description>
		<content:encoded><![CDATA[<p>Where is the source t othe _clipboard.swf? If you use GPL license of this code you must include the source&#8230;</p>
<p>But anyway thanks for the solution</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jeffrey Larson</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-1893</link>
		<author>Jeffrey Larson</author>
		<pubDate>Thu, 30 Nov 2006 14:49:16 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-1893</guid>
					<description>The application that the script and flash come from (Lussumo's Filebrowser) is released under the GPL.  The link for reference is in the post above.</description>
		<content:encoded><![CDATA[<p>The application that the script and flash come from (Lussumo&#8217;s Filebrowser) is released under the GPL.  The link for reference is in the post above.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Chad Crabtree</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-5583</link>
		<author>Chad Crabtree</author>
		<pubDate>Fri, 19 Jan 2007 15:55:56 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-5583</guid>
					<description>Thanks a bunch for this recipe, works great!</description>
		<content:encoded><![CDATA[<p>Thanks a bunch for this recipe, works great!</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Gerard</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-8199</link>
		<author>Gerard</author>
		<pubDate>Mon, 26 Feb 2007 01:29:32 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-8199</guid>
					<description>&lt;a href="http://www.jeffothy.com/weblog/clipboard-copy/#comment-1890" rel="nofollow"&gt;
&lt;i&gt;If you use GPL license of this code you must include the sourceâ€¦&lt;/i&gt;&lt;/a&gt;
The license restricts use and redistribution of the code, not the rights of the original copyright owner.  &lt;b&gt;You&lt;/b&gt;'re free not to use the code if you don't want to.</description>
		<content:encoded><![CDATA[<p><a href="http://www.jeffothy.com/weblog/clipboard-copy/#comment-1890" rel="nofollow"><br />
<i>If you use GPL license of this code you must include the sourceâ€¦</i></a><br />
The license restricts use and redistribution of the code, not the rights of the original copyright owner.  <b>You</b>&#8216;re free not to use the code if you don&#8217;t want to.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Randyl</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-8901</link>
		<author>Randyl</author>
		<pubDate>Fri, 09 Mar 2007 04:31:54 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-8901</guid>
					<description>I love this solution, but I need to copy text that contains special characters (plus signs, etc).  How do I make this script retain special characters?</description>
		<content:encoded><![CDATA[<p>I love this solution, but I need to copy text that contains special characters (plus signs, etc).  How do I make this script retain special characters?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Dean</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-9413</link>
		<author>Dean</author>
		<pubDate>Mon, 19 Mar 2007 09:10:32 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-9413</guid>
					<description>hi,
I have the same problem as Randyl. I need to copy special characters, but they all come out wrong (for example characters lika Ã¡ Ã© Ã­ Ãº Ã½ Ã¾ Ã¦ Ã¶ .. they are only shown as â€œsmall boxesâ€ when I paste them) does anyone know a way to fix this?

thank
Dean</description>
		<content:encoded><![CDATA[<p>hi,<br />
I have the same problem as Randyl. I need to copy special characters, but they all come out wrong (for example characters lika Ã¡ Ã© Ã­ Ãº Ã½ Ã¾ Ã¦ Ã¶ .. they are only shown as â€œsmall boxesâ€ when I paste them) does anyone know a way to fix this?</p>
<p>thank<br />
Dean</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Eric</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-9461</link>
		<author>Eric</author>
		<pubDate>Tue, 20 Mar 2007 13:37:00 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-9461</guid>
					<description>i have tried setting this up with an invisible div and a button to call the copy but I can't figure out why it isn't working. I'm getting object expected on the line that the  </description>
		<content:encoded><![CDATA[<p>i have tried setting this up with an invisible div and a button to call the copy but I can&#8217;t figure out why it isn&#8217;t working. I&#8217;m getting object expected on the line that the</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: BarelyBlogging &#187; Blog Archive &#187; links for 2007-03-22</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-9528</link>
		<author>BarelyBlogging &#187; Blog Archive &#187; links for 2007-03-22</author>
		<pubDate>Thu, 22 Mar 2007 00:21:14 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-9528</guid>
					<description>[...] Jeffothyâ€™s Keyings Â» Clipboard Copy Cross-browser script to copy to clipboard. (tags: javascript flash clipboard) [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Jeffothyâ€™s Keyings Â» Clipboard Copy Cross-browser script to copy to clipboard. (tags: javascript flash clipboard) [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: j&#8217;Alias &#187; JavaScript: Copy to Clipboard</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-9779</link>
		<author>j&#8217;Alias &#187; JavaScript: Copy to Clipboard</author>
		<pubDate>Tue, 27 Mar 2007 20:51:30 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-9779</guid>
					<description>[...] du code est aussi prÃ©sente ici.   in categories: JavaScript /  R&#233;trolien /       Laisser un [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] du code est aussi prÃ©sente ici.   in categories: JavaScript /  R&eacute;trolien /       Laisser un [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Avinash</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-10014</link>
		<author>Avinash</author>
		<pubDate>Thu, 05 Apr 2007 03:29:37 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-10014</guid>
					<description>good</description>
		<content:encoded><![CDATA[<p>good</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: George B.</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-10582</link>
		<author>George B.</author>
		<pubDate>Mon, 16 Apr 2007 16:18:29 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-10582</guid>
					<description>You are da man! Don't forget to define BodyLoaded. I don't know what that means, but maybe I missed something. Great tool!</description>
		<content:encoded><![CDATA[<p>You are da man! Don&#8217;t forget to define BodyLoaded. I don&#8217;t know what that means, but maybe I missed something. Great tool!</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Heather</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-10753</link>
		<author>Heather</author>
		<pubDate>Fri, 20 Apr 2007 18:50:56 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-10753</guid>
					<description>How do you do define body loaded?</description>
		<content:encoded><![CDATA[<p>How do you do define body loaded?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: dimitri</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-10783</link>
		<author>dimitri</author>
		<pubDate>Sat, 21 Apr 2007 12:29:46 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-10783</guid>
					<description>the special character issue is not from the SWF but rather, from the +escape()+ call in javascript which does an encoding on special characters - remove that and you're good to go however be careful, i've notice your data will be truncated if you have " in your strings</description>
		<content:encoded><![CDATA[<p>the special character issue is not from the SWF but rather, from the +escape()+ call in javascript which does an encoding on special characters - remove that and you&#8217;re good to go however be careful, i&#8217;ve notice your data will be truncated if you have &#8221; in your strings</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Eric Hakenholz</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-10811</link>
		<author>Eric Hakenholz</author>
		<pubDate>Sat, 21 Apr 2007 21:27:58 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-10811</guid>
					<description>Very good job : this flashcopier is great ! Thank's very much !</description>
		<content:encoded><![CDATA[<p>Very good job : this flashcopier is great ! Thank&#8217;s very much !</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: PapaBearPW</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-10994</link>
		<author>PapaBearPW</author>
		<pubDate>Wed, 25 Apr 2007 22:12:26 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-10994</guid>
					<description>I guess I'll go ahead a write this here too. ;)

Iâ€™ve found that changing the statement from +escape(text2copy)+ to +(text2copy)+ fixed the problem of displaying Ã¤, Ã¶, Ã¼, etc. In other words, just remove the word escape. When I tried to remove the entire thing, copying wouldnâ€™t work anymore (at least not in the way I was using it).

As to the data being truncated, I got around that by placing the text in a $variable and using echo addslashes($variable); to escape special characters and display the data.

Hope that helps someone.</description>
		<content:encoded><![CDATA[<p>I guess I&#8217;ll go ahead a write this here too. ;)</p>
<p>Iâ€™ve found that changing the statement from +escape(text2copy)+ to +(text2copy)+ fixed the problem of displaying Ã¤, Ã¶, Ã¼, etc. In other words, just remove the word escape. When I tried to remove the entire thing, copying wouldnâ€™t work anymore (at least not in the way I was using it).</p>
<p>As to the data being truncated, I got around that by placing the text in a $variable and using echo addslashes($variable); to escape special characters and display the data.</p>
<p>Hope that helps someone.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Shaul</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-11284</link>
		<author>Shaul</author>
		<pubDate>Thu, 03 May 2007 05:37:55 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-11284</guid>
					<description>The script trucates '+' signs even if I take out the escape. Any ideas?</description>
		<content:encoded><![CDATA[<p>The script trucates &#8216;+&#8217; signs even if I take out the escape. Any ideas?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Shaul</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-11285</link>
		<author>Shaul</author>
		<pubDate>Thu, 03 May 2007 05:48:37 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-11285</guid>
					<description>I checked again this is really bas - '+' signs are truncated and  replaced with a space!</description>
		<content:encoded><![CDATA[<p>I checked again this is really bas - &#8216;+&#8217; signs are truncated and  replaced with a space!</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Shaul</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-11340</link>
		<author>Shaul</author>
		<pubDate>Fri, 04 May 2007 18:54:05 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-11340</guid>
					<description>Anyone have an idea about this ('+' signs are been truncated)?</description>
		<content:encoded><![CDATA[<p>Anyone have an idea about this (&#8217;+&#8217; signs are been truncated)?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jeffrey Larson</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-11341</link>
		<author>Jeffrey Larson</author>
		<pubDate>Fri, 04 May 2007 19:50:55 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-11341</guid>
					<description>Shaul,

I think what you mean by "truncated" is replaced by spaces.
The culprit of this issue is indeed the escape() function call in the supporting script.

I think you'll find that if you replace the call to escape() with a call to &lt;strong&gt;encodeURIComponent()&lt;/strong&gt;, you'll find the plus signs will be copied as you expect.

As can be seen in the Javascript Documentation:
&lt;code&gt;The escape() function encodes special characters, with the exception of:
* @ - _ + . /&lt;/code&gt;

Now the problem is that the copy() function above actually adds an embed tag to the page with a flashvars attribute.  The flashvars attribute is used by action script in the _clipboard.swf and the '+' characters are interpreted as spaces.

The reason why using the encodeURIComponent() function works is because it encodes all characters for use in a URI, &lt;em&gt;including&lt;/em&gt; the * @ - _ + . /

It's a good point, and I'll update the original post with this fix.

Thanks.</description>
		<content:encoded><![CDATA[<p>Shaul,</p>
<p>I think what you mean by &#8220;truncated&#8221; is replaced by spaces.<br />
The culprit of this issue is indeed the escape() function call in the supporting script.</p>
<p>I think you&#8217;ll find that if you replace the call to escape() with a call to <strong>encodeURIComponent()</strong>, you&#8217;ll find the plus signs will be copied as you expect.</p>
<p>As can be seen in the Javascript Documentation:<br />
<code>The escape() function encodes special characters, with the exception of:<br />
* @ - _ + . /</code></p>
<p>Now the problem is that the copy() function above actually adds an embed tag to the page with a flashvars attribute.  The flashvars attribute is used by action script in the _clipboard.swf and the &#8216;+&#8217; characters are interpreted as spaces.</p>
<p>The reason why using the encodeURIComponent() function works is because it encodes all characters for use in a URI, <em>including</em> the * @ - _ + . /</p>
<p>It&#8217;s a good point, and I&#8217;ll update the original post with this fix.</p>
<p>Thanks.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Shaul</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-11376</link>
		<author>Shaul</author>
		<pubDate>Sat, 05 May 2007 21:10:36 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-11376</guid>
					<description>YOU ARE A LIFE SAVER! 
it worked!!

Thanks,
Shaul</description>
		<content:encoded><![CDATA[<p>YOU ARE A LIFE SAVER!<br />
it worked!!</p>
<p>Thanks,<br />
Shaul</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: â™© ScoreRender â™« &#187; Blog Archive &#187; Showing music source</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-11598</link>
		<author>â™© ScoreRender â™« &#187; Blog Archive &#187; Showing music source</author>
		<pubDate>Fri, 11 May 2007 21:34:47 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-11598</guid>
					<description>[...] somebody came up with ingenious way to bypass security setting (using flash to access clipboard), I&#8217;m not sure if I really want such thing bundled with the [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] somebody came up with ingenious way to bypass security setting (using flash to access clipboard), I&#8217;m not sure if I really want such thing bundled with the [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Harry</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-11696</link>
		<author>Harry</author>
		<pubDate>Mon, 14 May 2007 13:55:33 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-11696</guid>
					<description>This solution is great, but I'm having a secondary problem with it in Firefox.  After this function runs, Firefox redraws my screen (IE does not), returning all fields in my form to their default values, which are different than the ones I just copied.  Any ideas?</description>
		<content:encoded><![CDATA[<p>This solution is great, but I&#8217;m having a secondary problem with it in Firefox.  After this function runs, Firefox redraws my screen (IE does not), returning all fields in my form to their default values, which are different than the ones I just copied.  Any ideas?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: WebChicanery &#187; Clipboard Copy Javascript</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-11933</link>
		<author>WebChicanery &#187; Clipboard Copy Javascript</author>
		<pubDate>Mon, 21 May 2007 03:00:01 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-11933</guid>
					<description>[...] looking for a way to copy text into a users clipboard via Javascript. Thankfully I stumbled across Jeff Larson's page that included the 109 byte flash file necessary to pull this off. It however seems to fail in Opera [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] looking for a way to copy text into a users clipboard via Javascript. Thankfully I stumbled across Jeff Larson&#8217;s page that included the 109 byte flash file necessary to pull this off. It however seems to fail in Opera [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Kagliostro</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-11971</link>
		<author>Kagliostro</author>
		<pubDate>Mon, 21 May 2007 22:03:22 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-11971</guid>
					<description>I have same problem of Harry.
I tried to put a "copy to clipboard" at bottom of WP comments text area: it works in IE but in Firefox (v2.0.0.3 ), textarea seems reset and text disappear... 
Is there a solution?
Thanks

(sorry for my bad english)</description>
		<content:encoded><![CDATA[<p>I have same problem of Harry.<br />
I tried to put a &#8220;copy to clipboard&#8221; at bottom of WP comments text area: it works in IE but in Firefox (v2.0.0.3 ), textarea seems reset and text disappear&#8230;<br />
Is there a solution?<br />
Thanks</p>
<p>(sorry for my bad english)</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Erick</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-12834</link>
		<author>Erick</author>
		<pubDate>Mon, 11 Jun 2007 02:13:45 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-12834</guid>
					<description>Hi. this code works for me in IE and Firefox, but not in Opera. Any thoughts?</description>
		<content:encoded><![CDATA[<p>Hi. this code works for me in IE and Firefox, but not in Opera. Any thoughts?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: MiRAGe</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-12939</link>
		<author>MiRAGe</author>
		<pubDate>Tue, 12 Jun 2007 15:55:37 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-12939</guid>
					<description>This is pretty awesome, and I love you for it! Works perfect in my web applications!</description>
		<content:encoded><![CDATA[<p>This is pretty awesome, and I love you for it! Works perfect in my web applications!</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Sam</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-14406</link>
		<author>Sam</author>
		<pubDate>Thu, 05 Jul 2007 06:59:41 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-14406</guid>
					<description>it is not working in IE, Please do something it is very urgent</description>
		<content:encoded><![CDATA[<p>it is not working in IE, Please do something it is very urgent</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Dan</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-14538</link>
		<author>Dan</author>
		<pubDate>Fri, 06 Jul 2007 23:26:55 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-14538</guid>
					<description>Thanks, this is great. Using it on my image hosting site. :)</description>
		<content:encoded><![CDATA[<p>Thanks, this is great. Using it on my image hosting site. :)</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Dude</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-16613</link>
		<author>Dude</author>
		<pubDate>Wed, 01 Aug 2007 21:09:54 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-16613</guid>
					<description>why all these gimmicks then, isn't it easier to just use flash solution everywhere.</description>
		<content:encoded><![CDATA[<p>why all these gimmicks then, isn&#8217;t it easier to just use flash solution everywhere.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: RandyP</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-17015</link>
		<author>RandyP</author>
		<pubDate>Sat, 04 Aug 2007 17:56:23 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-17015</guid>
					<description>Need implementation assistance.  I'm trying to use this function with a simple onclick call, shown below, but it is not working.  Flash is installed and _clipboard.swf has been uploaded.  Maybe I need to pass a  variable for inElement?

&lt;code&gt;&lt;a href="#" rel="nofollow"&gt;[Copy URL to Clipboard]&lt;/a&gt;&lt;/code&gt;

Also, I'd like an alert box that confirms the copy.  Thanks for helping this js newb!</description>
		<content:encoded><![CDATA[<p>Need implementation assistance.  I&#8217;m trying to use this function with a simple onclick call, shown below, but it is not working.  Flash is installed and _clipboard.swf has been uploaded.  Maybe I need to pass a  variable for inElement?</p>
<p><code><a href="#" rel="nofollow">[Copy URL to Clipboard]</a></code></p>
<p>Also, I&#8217;d like an alert box that confirms the copy.  Thanks for helping this js newb!</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: RandyP</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-17016</link>
		<author>RandyP</author>
		<pubDate>Sat, 04 Aug 2007 17:58:21 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-17016</guid>
					<description>Sorry, my code came out as a link.  Here's my simple onclick call.

href="#" onclick="copy(inElement);return false;"</description>
		<content:encoded><![CDATA[<p>Sorry, my code came out as a link.  Here&#8217;s my simple onclick call.</p>
<p>href=&#8221;#&#8221; onclick=&#8221;copy(inElement);return false;&#8221;</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: bob</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-17423</link>
		<author>bob</author>
		<pubDate>Wed, 08 Aug 2007 21:19:08 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-17423</guid>
					<description>In IE, I get BodyLoaded is undefined.</description>
		<content:encoded><![CDATA[<p>In IE, I get BodyLoaded is undefined.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Methode</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-18150</link>
		<author>Methode</author>
		<pubDate>Wed, 15 Aug 2007 21:05:19 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-18150</guid>
					<description>Thanks, You're a living god!
Much appreciated!</description>
		<content:encoded><![CDATA[<p>Thanks, You&#8217;re a living god!<br />
Much appreciated!</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Methode</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-18151</link>
		<author>Methode</author>
		<pubDate>Wed, 15 Aug 2007 21:07:17 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-18151</guid>
					<description>function copy(inElement) {
  if (inElement.createTextRange) {
    var range = inElement.createTextRange();
// just remove the line i stroke through:
    if (range&lt;strike&gt; &#38;&#38; BodyLoaded==1&lt;/strike&gt;)
      range.execCommand('Copy');
  } else {</description>
		<content:encoded><![CDATA[<p>function copy(inElement) {<br />
  if (inElement.createTextRange) {<br />
    var range = inElement.createTextRange();<br />
// just remove the line i stroke through:<br />
    if (range<strike> &amp;&amp; BodyLoaded==1</strike>)<br />
      range.execCommand(&#8217;Copy&#8217;);<br />
  } else {</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: mazelx</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-19040</link>
		<author>mazelx</author>
		<pubDate>Fri, 24 Aug 2007 13:32:21 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-19040</guid>
					<description>Thanks so much, great work! Very Very useful!</description>
		<content:encoded><![CDATA[<p>Thanks so much, great work! Very Very useful!</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Dustin</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-19063</link>
		<author>Dustin</author>
		<pubDate>Fri, 24 Aug 2007 19:19:58 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-19063</guid>
					<description>IE keeps warning about Active Content.  I don't really want to show my users these messages.  Is there any way to get around this?</description>
		<content:encoded><![CDATA[<p>IE keeps warning about Active Content.  I don&#8217;t really want to show my users these messages.  Is there any way to get around this?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Shan</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-22238</link>
		<author>Shan</author>
		<pubDate>Fri, 21 Sep 2007 00:15:19 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-22238</guid>
					<description>This does not work in IE7</description>
		<content:encoded><![CDATA[<p>This does not work in IE7</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Michael</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-23714</link>
		<author>Michael</author>
		<pubDate>Mon, 01 Oct 2007 19:48:18 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-23714</guid>
					<description>Beautiful. Thanks for all the work on this!...Do you know how I could take the clipboard contents and define it to a variable in php? I'd like to send an email that includes the contents of the textarea that has been copied and need to $_POST to another php file. Thanks!</description>
		<content:encoded><![CDATA[<p>Beautiful. Thanks for all the work on this!&#8230;Do you know how I could take the clipboard contents and define it to a variable in php? I&#8217;d like to send an email that includes the contents of the textarea that has been copied and need to $_POST to another php file. Thanks!</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: ts</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-24274</link>
		<author>ts</author>
		<pubDate>Fri, 05 Oct 2007 12:43:27 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-24274</guid>
					<description>Perfect Solution - very cool :)
But how can i paste the clipboard in firefox with Javascript (get the content of the clipboard).</description>
		<content:encoded><![CDATA[<p>Perfect Solution - very cool :)<br />
But how can i paste the clipboard in firefox with Javascript (get the content of the clipboard).</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Ashwin.C</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-25371</link>
		<author>Ashwin.C</author>
		<pubDate>Fri, 12 Oct 2007 11:31:02 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-25371</guid>
					<description>CAN ANY GENIUS PEOPLE OUT THERE MAKE THIS WORK FOR OPERA AND IE7 .. I am a dummie so i cant be of much help...other than using the code u guys give me . but plsssss help . i want this badly or i will loose a big bet with my gf .</description>
		<content:encoded><![CDATA[<p>CAN ANY GENIUS PEOPLE OUT THERE MAKE THIS WORK FOR OPERA AND IE7 .. I am a dummie so i cant be of much help&#8230;other than using the code u guys give me . but plsssss help . i want this badly or i will loose a big bet with my gf .</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Remy Sharp</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-26269</link>
		<author>Remy Sharp</author>
		<pubDate>Fri, 19 Oct 2007 11:59:35 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-26269</guid>
					<description>Hi Jeffrey,

I found your post after trying to solve the + sign problem.  I've tweaked my own code to use encodeURIComponent - and the + sign is encoded properly - but when it's pasted out of the clipboard, it's set as %2B.

I've tried it using the _clipboard.swf you've provided out of an empty cache and I still get the %2B.  Does this definitely work, or can you possibly send me the source to the SWF so I can have a go at debugging it?

Cheers.</description>
		<content:encoded><![CDATA[<p>Hi Jeffrey,</p>
<p>I found your post after trying to solve the + sign problem.  I&#8217;ve tweaked my own code to use encodeURIComponent - and the + sign is encoded properly - but when it&#8217;s pasted out of the clipboard, it&#8217;s set as %2B.</p>
<p>I&#8217;ve tried it using the _clipboard.swf you&#8217;ve provided out of an empty cache and I still get the %2B.  Does this definitely work, or can you possibly send me the source to the SWF so I can have a go at debugging it?</p>
<p>Cheers.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jeffrey Larson</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-26279</link>
		<author>Jeffrey Larson</author>
		<pubDate>Fri, 19 Oct 2007 14:37:54 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-26279</guid>
					<description>Hi Remy,
Unfortunately I don't have the source of the SWF to give you, as I stated in the blog post you commented on, Mark O’Sullivan of http://lussumo.com/ is where I found this solution.  Maybe try contacting him?
Let me know if you get anywhere.
Jeffrey.</description>
		<content:encoded><![CDATA[<p>Hi Remy,<br />
Unfortunately I don&#8217;t have the source of the SWF to give you, as I stated in the blog post you commented on, Mark O’Sullivan of <a href="http://lussumo.com/" rel="nofollow">http://lussumo.com/</a> is where I found this solution.  Maybe try contacting him?<br />
Let me know if you get anywhere.<br />
Jeffrey.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: marten</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-26934</link>
		<author>marten</author>
		<pubDate>Tue, 23 Oct 2007 13:45:24 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-26934</guid>
					<description>For ExtJs users also usefull info. 

http://extjs.com/forum/showthread.php?p=73084</description>
		<content:encoded><![CDATA[<p>For ExtJs users also usefull info. </p>
<p><a href="http://extjs.com/forum/showthread.php?p=73084" rel="nofollow">http://extjs.com/forum/showthread.php?p=73084</a></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Oliver</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-27226</link>
		<author>Oliver</author>
		<pubDate>Thu, 25 Oct 2007 17:29:59 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-27226</guid>
					<description>Hi Jeffrey

Did you find a way how to pass line breaks (\n) in the textarea-field to the flash?

When I have textarea with multiple lines and I use this function and then copy the contents of the clipboard into notepad i get a multi-line output with IE but with Firefox all the linebreaks get replaced by squares.</description>
		<content:encoded><![CDATA[<p>Hi Jeffrey</p>
<p>Did you find a way how to pass line breaks (\n) in the textarea-field to the flash?</p>
<p>When I have textarea with multiple lines and I use this function and then copy the contents of the clipboard into notepad i get a multi-line output with IE but with Firefox all the linebreaks get replaced by squares.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Oliver</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-27227</link>
		<author>Oliver</author>
		<pubDate>Thu, 25 Oct 2007 17:35:22 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-27227</guid>
					<description>i think i just found it out myself.... replaced the encodeURIComponent by this function

function escape_breaks(str) {
	str = encodeURIComponent(str);
	var newstring = str.replace(/%0A/g, "%0D%0A");
	return newstring;
}</description>
		<content:encoded><![CDATA[<p>i think i just found it out myself&#8230;. replaced the encodeURIComponent by this function</p>
<p>function escape_breaks(str) {<br />
	str = encodeURIComponent(str);<br />
	var newstring = str.replace(/%0A/g, &#8220;%0D%0A&#8221;);<br />
	return newstring;<br />
}</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: 幻想的世界</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-27631</link>
		<author>幻想的世界</author>
		<pubDate>Sun, 28 Oct 2007 10:27:06 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-27631</guid>
					<description>&lt;strong&gt;跨瀏覽器的直接複製網址...&lt;/strong&gt;

在IE底下可以很方便的，就由一個按鍵或是很直接的自動複製連結，那是因為IE可以操控到電腦的剪貼簿，但是Firefox、Opera、Safari等等的不可能簡單的利用Javascript達成啦！
所以在Google的幫助下...</description>
		<content:encoded><![CDATA[<p><strong>跨瀏覽器的直接複製網址&#8230;</strong></p>
<p>在IE底下可以很方便的，就由一個按鍵或是很直接的自動複製連結，那是因為IE可以操控到電腦的剪貼簿，但是Firefox、Opera、Safari等等的不可能簡單的利用Javascript達成啦！<br />
所以在Google的幫助下&#8230;</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Extending Prototype - Copy to Clipboard &#171; joe gornick</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-27898</link>
		<author>Extending Prototype - Copy to Clipboard &#171; joe gornick</author>
		<pubDate>Mon, 29 Oct 2007 21:55:01 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-27898</guid>
					<description>[...] Jeffothy provides us with swf (right-click, save link as) to use when copying to the clipboard. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Jeffothy provides us with swf (right-click, save link as) to use when copying to the clipboard. [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Arie</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-29886</link>
		<author>Arie</author>
		<pubDate>Fri, 09 Nov 2007 14:10:32 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-29886</guid>
					<description>Working great, but if I copy HTML code it is transformed (escaped).

How do I copy plain HTML instead of getting this:

;&#60;a href=&#34;http://www.domain.com&#34;&#62;</description>
		<content:encoded><![CDATA[<p>Working great, but if I copy HTML code it is transformed (escaped).</p>
<p>How do I copy plain HTML instead of getting this:</p>
<p>;&lt;a href=&quot;http://www.domain.com&quot;&gt;</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: diogomoura´s &#187; Copiar para o Clipboard através do javascript - cross-browser</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-29909</link>
		<author>diogomoura´s &#187; Copiar para o Clipboard através do javascript - cross-browser</author>
		<pubDate>Fri, 09 Nov 2007 17:12:37 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-29909</guid>
					<description>[...] http://www.jeffothy.com/weblog/clipboard-copy/ [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] <a href="http://www.jeffothy.com/weblog/clipboard-copy/" rel="nofollow">http://www.jeffothy.com/weblog/clipboard-copy/</a> [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Diogo</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-29910</link>
		<author>Diogo</author>
		<pubDate>Fri, 09 Nov 2007 17:13:07 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-29910</guid>
					<description>wOw.... i really thank you.... you saved my life....</description>
		<content:encoded><![CDATA[<p>wOw&#8230;. i really thank you&#8230;. you saved my life&#8230;.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Sub</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-30644</link>
		<author>Sub</author>
		<pubDate>Tue, 13 Nov 2007 22:00:20 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-30644</guid>
					<description>Great!!!!! How can I make it work for multiple texts as working in this IE version? http://www.codingforums.com/archive/index.php?t-8911.html</description>
		<content:encoded><![CDATA[<p>Great!!!!! How can I make it work for multiple texts as working in this IE version? <a href="http://www.codingforums.com/archive/index.php?t-8911.html" rel="nofollow">http://www.codingforums.com/archive/index.php?t-8911.html</a></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Sub</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-30647</link>
		<author>Sub</author>
		<pubDate>Tue, 13 Nov 2007 22:12:43 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-30647</guid>
					<description>great! how can i make it work for multiple texts &#38; links as working in this IE version?
http://www.codingforums.com/archive/index.php?t-8911.html
maybe combine that with this flash version?</description>
		<content:encoded><![CDATA[<p>great! how can i make it work for multiple texts &amp; links as working in this IE version?<br />
<a href="http://www.codingforums.com/archive/index.php?t-8911.html" rel="nofollow">http://www.codingforums.com/archive/index.php?t-8911.html</a><br />
maybe combine that with this flash version?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Sub</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-30998</link>
		<author>Sub</author>
		<pubDate>Thu, 15 Nov 2007 20:32:39 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-30998</guid>
					<description>Great! Is it possible to have multiple copy links? 
It was realized in this script (IE only) http://www.codingforums.com/archive/index.php?t-8911.html</description>
		<content:encoded><![CDATA[<p>Great! Is it possible to have multiple copy links?<br />
It was realized in this script (IE only) <a href="http://www.codingforums.com/archive/index.php?t-8911.html" rel="nofollow">http://www.codingforums.com/archive/index.php?t-8911.html</a></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Leeor D.</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-31205</link>
		<author>Leeor D.</author>
		<pubDate>Fri, 16 Nov 2007 17:24:34 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-31205</guid>
					<description>If part of a software project is under GPL, all of it has to be. In other words, you can't release the JS code GPL'ed and then have the required SWF component not be GPL. That would violate the GPL Liscence.</description>
		<content:encoded><![CDATA[<p>If part of a software project is under GPL, all of it has to be. In other words, you can&#8217;t release the JS code GPL&#8217;ed and then have the required SWF component not be GPL. That would violate the GPL Liscence.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Leeor D.</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-31206</link>
		<author>Leeor D.</author>
		<pubDate>Fri, 16 Nov 2007 17:26:39 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-31206</guid>
					<description>STFI</description>
		<content:encoded><![CDATA[<p>STFI</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Eyal Gu</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-31328</link>
		<author>Eyal Gu</author>
		<pubDate>Sat, 17 Nov 2007 09:42:58 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-31328</guid>
					<description>Thank You!
It works like a charm :)</description>
		<content:encoded><![CDATA[<p>Thank You!<br />
It works like a charm :)</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Copy to clipboard in Firefox without escaping characters</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-32879</link>
		<author>Copy to clipboard in Firefox without escaping characters</author>
		<pubDate>Tue, 27 Nov 2007 05:49:14 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-32879</guid>
					<description>[...] 2. Using a flash file that passes the copied text to the flash file via the flashvars property. [See] [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] 2. Using a flash file that passes the copied text to the flash file via the flashvars property. [See] [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Yansky</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-32892</link>
		<author>Yansky</author>
		<pubDate>Tue, 27 Nov 2007 08:48:22 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-32892</guid>
					<description>I found a way to get around the special html characters issue that seems to occur using this method. I've written up a brief explanation here: &lt;a href="http://forboden.com/2007/11/27/copy-to-clipboard-in-firefox-without-escaping-characters/" rel="nofollow"&gt;http://forboden.com/2007/11/27/copy-to-clipboard-in-firefox-without-escaping-characters/&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>I found a way to get around the special html characters issue that seems to occur using this method. I&#8217;ve written up a brief explanation here: <a href="http://forboden.com/2007/11/27/copy-to-clipboard-in-firefox-without-escaping-characters/" rel="nofollow">http://forboden.com/2007/11/27/copy-to-clipboard-in-firefox-without-escaping-characters/</a></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Adrian</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-33458</link>
		<author>Adrian</author>
		<pubDate>Fri, 30 Nov 2007 12:41:21 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-33458</guid>
					<description>Hey Jeff - great work man!

Did you ever managet to find a solution for pasting FROM clipboard into browsers?

Cheers,

Adrian</description>
		<content:encoded><![CDATA[<p>Hey Jeff - great work man!</p>
<p>Did you ever managet to find a solution for pasting FROM clipboard into browsers?</p>
<p>Cheers,</p>
<p>Adrian</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Rob&#8217;s geeky discoveries Blog &#187; Copy Embed Tag to Clipboard from Flash</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-33835</link>
		<author>Rob&#8217;s geeky discoveries Blog &#187; Copy Embed Tag to Clipboard from Flash</author>
		<pubDate>Mon, 03 Dec 2007 13:34:28 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-33835</guid>
					<description>[...] to Jeffothy for the original DHTML solution of using encodeURIComponent() I updated this somewhat and made it write the myspace tag to a hidden [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] to Jeffothy for the original DHTML solution of using encodeURIComponent() I updated this somewhat and made it write the myspace tag to a hidden [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Julien - Cahri</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-33847</link>
		<author>Julien - Cahri</author>
		<pubDate>Mon, 03 Dec 2007 17:22:56 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-33847</guid>
					<description>We have improved the system so it can be called within a JavaScript function (and thus AJAX).

You can download it from &lt;a&gt;here&lt;/a&gt; (the link is "Cliquez ici pour télécharger notre version").

You just need to use copy("Whatever you want") from any script. Shall you need carriage return, add "\n" (without quotes) to your string.</description>
		<content:encoded><![CDATA[<p>We have improved the system so it can be called within a JavaScript function (and thus AJAX).</p>
<p>You can download it from <a>here</a> (the link is &#8220;Cliquez ici pour télécharger notre version&#8221;).</p>
<p>You just need to use copy(&#8221;Whatever you want&#8221;) from any script. Shall you need carriage return, add &#8220;\n&#8221; (without quotes) to your string.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Brian Seagraves</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-40364</link>
		<author>Brian Seagraves</author>
		<pubDate>Wed, 09 Jan 2008 02:43:09 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-40364</guid>
					<description>Thank you very much. This saved me a lot of time!</description>
		<content:encoded><![CDATA[<p>Thank you very much. This saved me a lot of time!</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Rainie</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-40801</link>
		<author>Rainie</author>
		<pubDate>Fri, 11 Jan 2008 03:27:16 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-40801</guid>
					<description>Thank you very very very much ^Q^</description>
		<content:encoded><![CDATA[<p>Thank you very very very much ^Q^</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Devthought - Guillermo Rauch&#8217;s Blog &#187; How Flash currently aids Javascript development</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-42289</link>
		<author>Devthought - Guillermo Rauch&#8217;s Blog &#187; How Flash currently aids Javascript development</author>
		<pubDate>Fri, 18 Jan 2008 12:49:01 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-42289</guid>
					<description>[...] however, allows developers to freely copy the text to the clipboard. Jeffrey Larson came up with the solution using a really small swf file from his Javascript [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] however, allows developers to freely copy the text to the clipboard. Jeffrey Larson came up with the solution using a really small swf file from his Javascript [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jay</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-42734</link>
		<author>Jay</author>
		<pubDate>Mon, 21 Jan 2008 00:24:59 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-42734</guid>
					<description>I like this script it's awesome but I have one question... Right now I don't feel like there is any indication to the user that the text in the textarea has been copied.  Is there a way I can say "copied" next to the button or smthg?  This might be a very stupid question but I'm not that good with this stuff!</description>
		<content:encoded><![CDATA[<p>I like this script it&#8217;s awesome but I have one question&#8230; Right now I don&#8217;t feel like there is any indication to the user that the text in the textarea has been copied.  Is there a way I can say &#8220;copied&#8221; next to the button or smthg?  This might be a very stupid question but I&#8217;m not that good with this stuff!</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Javor</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-42902</link>
		<author>Javor</author>
		<pubDate>Mon, 21 Jan 2008 22:06:03 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-42902</guid>
					<description>Great!!! Thank you!</description>
		<content:encoded><![CDATA[<p>Great!!! Thank you!</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Ma.gnolia Links from Feb 03 to Feb 10 &#171; μ-gration</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-47121</link>
		<author>Ma.gnolia Links from Feb 03 to Feb 10 &#171; μ-gration</author>
		<pubDate>Sun, 10 Feb 2008 08:01:34 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-47121</guid>
					<description>[...] Copy arbitrary text to clipboard, via flash [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Copy arbitrary text to clipboard, via flash [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Col</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-48538</link>
		<author>Col</author>
		<pubDate>Fri, 15 Feb 2008 18:48:20 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-48538</guid>
					<description>Brilliant!
Only problem is that some charactors don't copy properly such as + and % but I'm sure you already know that!
Very useful tool!</description>
		<content:encoded><![CDATA[<p>Brilliant!<br />
Only problem is that some charactors don&#8217;t copy properly such as + and % but I&#8217;m sure you already know that!<br />
Very useful tool!</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: forboden &#187; Blog Archive &#187; Copy to clipboard in Firefox without escaping characters</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-48892</link>
		<author>forboden &#187; Blog Archive &#187; Copy to clipboard in Firefox without escaping characters</author>
		<pubDate>Sun, 17 Feb 2008 01:46:55 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-48892</guid>
					<description>[...] 2. Using a flash file that passes the copied text to the flash file via the flashvars property. [See] [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] 2. Using a flash file that passes the copied text to the flash file via the flashvars property. [See] [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: 沙漠之子</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-50242</link>
		<author>沙漠之子</author>
		<pubDate>Fri, 22 Feb 2008 13:06:32 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-50242</guid>
					<description>great!!!
It can support Chinese when use encodeURIComponent() replace to escape() .</description>
		<content:encoded><![CDATA[<p>great!!!<br />
It can support Chinese when use encodeURIComponent() replace to escape() .</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Harry</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-51710</link>
		<author>Harry</author>
		<pubDate>Fri, 29 Feb 2008 00:45:48 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-51710</guid>
					<description>Is there a final version of this copy script that works in both FireFox and IE?

Also I don't understand what the swf file does... Can some one explain this. I have tried several ways to get this to work in "Edit Plus" but it only seams to work with IE.. Am I doing something wrong?</description>
		<content:encoded><![CDATA[<p>Is there a final version of this copy script that works in both FireFox and IE?</p>
<p>Also I don&#8217;t understand what the swf file does&#8230; Can some one explain this. I have tried several ways to get this to work in &#8220;Edit Plus&#8221; but it only seams to work with IE.. Am I doing something wrong?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Teddy Toernby</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-55172</link>
		<author>Teddy Toernby</author>
		<pubDate>Sat, 15 Mar 2008 01:38:02 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-55172</guid>
					<description>This is fine.

But I want pure clean code.

As a developer/webmaster, you can't expect everyone to have Flash installed at their computers.

Theres got to be another way out of this . . .</description>
		<content:encoded><![CDATA[<p>This is fine.</p>
<p>But I want pure clean code.</p>
<p>As a developer/webmaster, you can&#8217;t expect everyone to have Flash installed at their computers.</p>
<p>Theres got to be another way out of this . . .</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: XEc</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-58497</link>
		<author>XEc</author>
		<pubDate>Wed, 26 Mar 2008 23:33:11 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-58497</guid>
					<description>Thanks a bunch. I've been looking for one of these for ages since I saw it on photobucket. Even though this post is 3 years old</description>
		<content:encoded><![CDATA[<p>Thanks a bunch. I&#8217;ve been looking for one of these for ages since I saw it on photobucket. Even though this post is 3 years old</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Ben</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-59630</link>
		<author>Ben</author>
		<pubDate>Tue, 01 Apr 2008 11:05:03 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-59630</guid>
					<description>Just wondering if anyone knows if its possible to copy formatted text to the clipboard, rather than the HTML. I've tried this code and it works great on a DIV I need to copy. However, its copying the HTML, which is not what happens when a user highlights text and copies it (that would grab a formatted chunk of text which someone could put straight into Word etc). Is this even possible?</description>
		<content:encoded><![CDATA[<p>Just wondering if anyone knows if its possible to copy formatted text to the clipboard, rather than the HTML. I&#8217;ve tried this code and it works great on a DIV I need to copy. However, its copying the HTML, which is not what happens when a user highlights text and copies it (that would grab a formatted chunk of text which someone could put straight into Word etc). Is this even possible?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Shasoosh</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-62669</link>
		<author>Shasoosh</author>
		<pubDate>Fri, 11 Apr 2008 09:35:10 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-62669</guid>
					<description>Hey,
im wondering, how can i call "copy" if i want to copy the url?
I've tried using javascript:copy(document.location.href) but with no luck</description>
		<content:encoded><![CDATA[<p>Hey,<br />
im wondering, how can i call &#8220;copy&#8221; if i want to copy the url?<br />
I&#8217;ve tried using javascript:copy(document.location.href) but with no luck</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Shasoosh</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-62671</link>
		<author>Shasoosh</author>
		<pubDate>Fri, 11 Apr 2008 09:41:24 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-62671</guid>
					<description>how can i copy my current url with this?</description>
		<content:encoded><![CDATA[<p>how can i copy my current url with this?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Aalaap Ghag</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-64447</link>
		<author>Aalaap Ghag</author>
		<pubDate>Thu, 17 Apr 2008 05:41:38 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-64447</guid>
					<description>Great work! I'm using a modified, slightly simplified version of this on &lt;a href="http://linkbun.ch" title="LinkBunch" rel="nofollow"&gt;LinkBunch&lt;/a&gt;, a multiple link grouping utility, and &lt;a href="http://lin.cr" title="Lincr" rel="nofollow"&gt;Lincr&lt;/a&gt;, a simple URL shortening service. Thanks for this!</description>
		<content:encoded><![CDATA[<p>Great work! I&#8217;m using a modified, slightly simplified version of this on <a href="http://linkbun.ch" title="LinkBunch" rel="nofollow">LinkBunch</a>, a multiple link grouping utility, and <a href="http://lin.cr" title="Lincr" rel="nofollow">Lincr</a>, a simple URL shortening service. Thanks for this!</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Abel</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-64767</link>
		<author>Abel</author>
		<pubDate>Fri, 18 Apr 2008 03:02:25 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-64767</guid>
					<description>Is it possible to get a "copy selected text" script instead of a "copy all text" like this one. BTW it works fine in Firefox 2.0.0.11 Thank you!</description>
		<content:encoded><![CDATA[<p>Is it possible to get a &#8220;copy selected text&#8221; script instead of a &#8220;copy all text&#8221; like this one. BTW it works fine in Firefox 2.0.0.11 Thank you!</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Come implementare la copia del testo usando Javascript + Flash (cross browser) &#124; Il blog che non c'è</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-71521</link>
		<author>Come implementare la copia del testo usando Javascript + Flash (cross browser) &#124; Il blog che non c'è</author>
		<pubDate>Thu, 08 May 2008 15:49:34 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-71521</guid>
					<description>[...] Fonte: Clipboard Copy. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Fonte: Clipboard Copy. [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Alston</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-71765</link>
		<author>Alston</author>
		<pubDate>Fri, 09 May 2008 09:48:07 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-71765</guid>
					<description>Jeffrey 

Firstly thanks for the script.
There is an error in the revised script that you have posted to get around the +* problem of javascipt escape().

The scripts does NOT work with the line &lt;strong&gt;encodeURIComponent(inElement.value)&lt;/strong&gt;

It works only when it is changed to &lt;strong&gt;encodeURIComponent(inElement)&lt;/strong&gt;</description>
		<content:encoded><![CDATA[<p>Jeffrey </p>
<p>Firstly thanks for the script.<br />
There is an error in the revised script that you have posted to get around the +* problem of javascipt escape().</p>
<p>The scripts does NOT work with the line <strong>encodeURIComponent(inElement.value)</strong></p>
<p>It works only when it is changed to <strong>encodeURIComponent(inElement)</strong></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: 轶侠的网上小窝 &#187; 日志 &#187; 支持firefox的“复制到剪贴板”</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-72108</link>
		<author>轶侠的网上小窝 &#187; 日志 &#187; 支持firefox的“复制到剪贴板”</author>
		<pubDate>Sun, 11 May 2008 11:13:25 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-72108</guid>
					<description>[...] 搜索后看到了Jeffothy’s Keyings写的Clipboard Copy在firefox里用了个隐藏的flash来实现代码copy，很暴力，很弓虽。 [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] 搜索后看到了Jeffothy’s Keyings写的Clipboard Copy在firefox里用了个隐藏的flash来实现代码copy，很暴力，很弓虽。 [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: 轶侠的网上小窝 &#187; 日志 &#187; WP插件codebox</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-72112</link>
		<author>轶侠的网上小窝 &#187; 日志 &#187; WP插件codebox</author>
		<pubDate>Sun, 11 May 2008 11:48:16 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-72112</guid>
					<description>[...] 在Firefox里复制到剪贴板功能因为firefox的安全策略不能用（其实除了ie别的浏览器都不能用这个），所以链接隐藏，在代码关闭的时候这个功能也不可用所以也隐藏。其实在Firefox里还是有曲线实现复制到剪贴板的，具体方法见《Clipboard Copy》，《支持firefox的“复制到剪贴板”》 [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] 在Firefox里复制到剪贴板功能因为firefox的安全策略不能用（其实除了ie别的浏览器都不能用这个），所以链接隐藏，在代码关闭的时候这个功能也不可用所以也隐藏。其实在Firefox里还是有曲线实现复制到剪贴板的，具体方法见《Clipboard Copy》，《支持firefox的“复制到剪贴板”》 [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: teddY-risatioN™ &#187; Designing is Fun - a Wordpress Poster</title>
		<link>http://www.jeffothy.com/weblog/clipboard-copy/#comment-73047</link>
		<author>teddY-risatioN™ &#187; Designing is Fun - a Wordpress Poster</author>
		<pubDate>Wed, 14 May 2008 09:57:52 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/clipboard-copy/#comment-73047</guid>
					<description>[...] is very nice to share his copy to clipboard script on his blog for free! Installing the javascript is simple - upload the .js file and the .swf file [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] is very nice to share his copy to clipboard script on his blog for free! Installing the javascript is simple - upload the .js file and the .swf file [&#8230;]</p>
]]></content:encoded>
				</item>
</channel>
</rss>
