<?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 do a bookmarklet with javascript</title>
	<atom:link href="http://www.javascriptkata.com/2007/04/19/how-to-do-a-bookmarklet-with-javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.javascriptkata.com/2007/04/19/how-to-do-a-bookmarklet-with-javascript/</link>
	<description>Advanced katas for javascripters</description>
	<lastBuildDate>Fri, 30 Jul 2010 18:10:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: How to execute javascript code directly in your browser &#124; Javascript Kata</title>
		<link>http://www.javascriptkata.com/2007/04/19/how-to-do-a-bookmarklet-with-javascript/comment-page-1/#comment-776</link>
		<dc:creator>How to execute javascript code directly in your browser &#124; Javascript Kata</dc:creator>
		<pubDate>Mon, 14 Sep 2009 13:21:08 +0000</pubDate>
		<guid isPermaLink="false">http://javascriptkata.timmyontime.com/?p=27#comment-776</guid>
		<description>[...] if you want to write a bookmarklet, you&#8217;ll probably use this [...]</description>
		<content:encoded><![CDATA[<p>[...] if you want to write a bookmarklet, you&#8217;ll probably use this [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Corey Hollaway</title>
		<link>http://www.javascriptkata.com/2007/04/19/how-to-do-a-bookmarklet-with-javascript/comment-page-1/#comment-137</link>
		<dc:creator>Corey Hollaway</dc:creator>
		<pubDate>Fri, 29 Jun 2007 03:03:50 +0000</pubDate>
		<guid isPermaLink="false">http://javascriptkata.timmyontime.com/?p=27#comment-137</guid>
		<description>Mistake on last comment!  For Windows Firefox you
need double quotes for the strings!  Put all of
the code below on _one_ line in the address
bar or a bookmark URL:

javascript:
document.getElementsByTagName(&quot;body&quot;)[0]
.style.background
= &quot;#fff none&quot;; void(0);</description>
		<content:encoded><![CDATA[<p>Mistake on last comment!  For Windows Firefox you<br />
need double quotes for the strings!  Put all of<br />
the code below on _one_ line in the address<br />
bar or a bookmark URL:</p>
<p>javascript:<br />
document.getElementsByTagName(&#8220;body&#8221;)[0]<br />
.style.background<br />
= &#8220;#fff none&#8221;; void(0);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Corey Hollaway</title>
		<link>http://www.javascriptkata.com/2007/04/19/how-to-do-a-bookmarklet-with-javascript/comment-page-1/#comment-136</link>
		<dc:creator>Corey Hollaway</dc:creator>
		<pubDate>Mon, 18 Jun 2007 07:25:13 +0000</pubDate>
		<guid isPermaLink="false">http://javascriptkata.timmyontime.com/?p=27#comment-136</guid>
		<description>Beautiful post!!  Thank you for sharing!

For the folks that put crazy background images on their myspace/youtube pages, you can make the background white:
javascript:document.getElementsByTagName(&#039;body&#039;)[0].style.background=&#039;#fff none&#039;;void(0);

:))</description>
		<content:encoded><![CDATA[<p>Beautiful post!!  Thank you for sharing!</p>
<p>For the folks that put crazy background images on their myspace/youtube pages, you can make the background white:<br />
javascript:document.getElementsByTagName(&#8216;body&#8217;)[0].style.background=&#8217;#fff none&#8217;;void(0);<br />
 <img src='http://www.javascriptkata.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucas</title>
		<link>http://www.javascriptkata.com/2007/04/19/how-to-do-a-bookmarklet-with-javascript/comment-page-1/#comment-135</link>
		<dc:creator>Lucas</dc:creator>
		<pubDate>Tue, 29 May 2007 16:12:16 +0000</pubDate>
		<guid isPermaLink="false">http://javascriptkata.timmyontime.com/?p=27#comment-135</guid>
		<description>Or you can use this site:

http://www.jsquickmark.com/</description>
		<content:encoded><![CDATA[<p>Or you can use this site:</p>
<p><a href="http://www.jsquickmark.com/" rel="nofollow">http://www.jsquickmark.com/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: All in a days work&#8230;</title>
		<link>http://www.javascriptkata.com/2007/04/19/how-to-do-a-bookmarklet-with-javascript/comment-page-1/#comment-134</link>
		<dc:creator>All in a days work&#8230;</dc:creator>
		<pubDate>Sat, 21 Apr 2007 11:27:26 +0000</pubDate>
		<guid isPermaLink="false">http://javascriptkata.timmyontime.com/?p=27#comment-134</guid>
		<description>[...] How to do a bookmarklet with JavaScript How do you execute a &#8216;complex&#8217; app on a page utilizing less than 2083 characters (IE&#8217;s address bar limit)? Remember, the browser has complete control over a page so you can import JavaScript files into it (without being stopped by security)! (tags: Bookmarklets JavaScript Security) [...]</description>
		<content:encoded><![CDATA[<p>[...] How to do a bookmarklet with JavaScript How do you execute a &#8216;complex&#8217; app on a page utilizing less than 2083 characters (IE&#8217;s address bar limit)? Remember, the browser has complete control over a page so you can import JavaScript files into it (without being stopped by security)! (tags: Bookmarklets JavaScript Security) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pdp</title>
		<link>http://www.javascriptkata.com/2007/04/19/how-to-do-a-bookmarklet-with-javascript/comment-page-1/#comment-133</link>
		<dc:creator>pdp</dc:creator>
		<pubDate>Fri, 20 Apr 2007 09:05:45 +0000</pubDate>
		<guid isPermaLink="false">http://javascriptkata.timmyontime.com/?p=27#comment-133</guid>
		<description>or you can use a tool like Technika to ease the bookmarklet development

http://www.gnucitizen.org/projects/technika/</description>
		<content:encoded><![CDATA[<p>or you can use a tool like Technika to ease the bookmarklet development</p>
<p><a href="http://www.gnucitizen.org/projects/technika/" rel="nofollow">http://www.gnucitizen.org/projects/technika/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://www.javascriptkata.com/2007/04/19/how-to-do-a-bookmarklet-with-javascript/comment-page-1/#comment-132</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Thu, 19 Apr 2007 16:24:53 +0000</pubDate>
		<guid isPermaLink="false">http://javascriptkata.timmyontime.com/?p=27#comment-132</guid>
		<description>Hey, this is great. I love the fact that you can include a js source file in the bookmarklet.</description>
		<content:encoded><![CDATA[<p>Hey, this is great. I love the fact that you can include a js source file in the bookmarklet.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
