<?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: IE Tip: Cheeky way to see the current state of the page</title>
	<atom:link href="http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page/feed" rel="self" type="application/rss+xml" />
	<link>http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page</link>
	<description>Cleaning up the web with Ajax</description>
	<lastBuildDate>Thu, 09 Feb 2012 06:55:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
	<item>
		<title>By: B@rney</title>
		<link>http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page/comment-page-1#comment-93716</link>
		<dc:creator>B@rney</dc:creator>
		<pubDate>Fri, 15 Sep 2006 13:15:49 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page#comment-93716</guid>
		<description>Great tip. I vote for the last comment by James. At least that works best for me in IE...</description>
		<content:encoded><![CDATA[<p>Great tip. I vote for the last comment by James. At least that works best for me in IE&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Search Engine Marketing Blog &#187; See the current html state of page in IE</title>
		<link>http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page/comment-page-1#comment-4006</link>
		<dc:creator>Search Engine Marketing Blog &#187; See the current html state of page in IE</dc:creator>
		<pubDate>Sat, 25 Feb 2006 14:40:12 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page#comment-4006</guid>
		<description>[...] Found a interesting little post on Ajaxian, often in the SEO bussiness you want to fund the source code as fully rendered by the browsers. This is an easy method to do so, place this code in your address bar when viewing the page. javascript:&#039;&#8217;+window.document.body.outerHTML+&#039;&#8217;; [...]</description>
		<content:encoded><![CDATA[<p>[...] Found a interesting little post on Ajaxian, often in the SEO bussiness you want to fund the source code as fully rendered by the browsers. This is an easy method to do so, place this code in your address bar when viewing the page. javascript:&#8217;&#8217;+window.document.body.outerHTML+&#8217;&#8217;; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mojoe</title>
		<link>http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page/comment-page-1#comment-3973</link>
		<dc:creator>Mojoe</dc:creator>
		<pubDate>Fri, 24 Feb 2006 15:10:14 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page#comment-3973</guid>
		<description>Instead I just wiggle my fingers and websites do what I need them to do</description>
		<content:encoded><![CDATA[<p>Instead I just wiggle my fingers and websites do what I need them to do</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arve Bersvendsen</title>
		<link>http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page/comment-page-1#comment-3958</link>
		<dc:creator>Arve Bersvendsen</dc:creator>
		<pubDate>Fri, 24 Feb 2006 08:59:28 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page#comment-3958</guid>
		<description>Instead of using document.body.outerHTML, I would recommend using document.documentElement.outerHTML : That way, you will also get the root node of the document you&#039;re checking.</description>
		<content:encoded><![CDATA[<p>Instead of using document.body.outerHTML, I would recommend using document.documentElement.outerHTML : That way, you will also get the root node of the document you&#8217;re checking.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: c@M</title>
		<link>http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page/comment-page-1#comment-3943</link>
		<dc:creator>c@M</dc:creator>
		<pubDate>Fri, 24 Feb 2006 00:40:44 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page#comment-3943</guid>
		<description>Sorry about the double post... forgot to escape the &lt; and &gt; when I posted. Duh... live preview further down on the page. Let me strap my helmet back on....

javascript:if (window.document.body.outerHTML != undefined){&#039;&lt;xmp&gt;&#039;+window.document.body.outerHTML+&#039;&lt;/xmp&gt;&#039;} else if (document.getElementsByTagName(&quot;html&quot;)[0].innerHTML != undefined){&#039;&lt;xmp&gt;&#039;+document.getElementsByTagName(&quot;html&quot;)[0].innerHTML+&#039;&lt;/xmp&gt;&#039;} else if (window.document.documentElement.outerHTML != undefined){&#039;&lt;xmp&gt;&#039;+window.document.documentElement.outerHTML+&#039;&lt;/xmp&gt;&#039;} else { alert(&#039;Your browser does not support this functionality&#039;) };</description>
		<content:encoded><![CDATA[<p>Sorry about the double post&#8230; forgot to escape the &lt; and &gt; when I posted. Duh&#8230; live preview further down on the page. Let me strap my helmet back on&#8230;.</p>
<p>javascript:if (window.document.body.outerHTML != undefined){&#8216;&lt;xmp&gt;&#8217;+window.document.body.outerHTML+&#8217;&lt;/xmp&gt;&#8217;} else if (document.getElementsByTagName(&#8220;html&#8221;)[0].innerHTML != undefined){&#8216;&lt;xmp&gt;&#8217;+document.getElementsByTagName(&#8220;html&#8221;)[0].innerHTML+&#8217;&lt;/xmp&gt;&#8217;} else if (window.document.documentElement.outerHTML != undefined){&#8216;&lt;xmp&gt;&#8217;+window.document.documentElement.outerHTML+&#8217;&lt;/xmp&gt;&#8217;} else { alert(&#8216;Your browser does not support this functionality&#8217;) };</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: c@M</title>
		<link>http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page/comment-page-1#comment-3942</link>
		<dc:creator>c@M</dc:creator>
		<pubDate>Fri, 24 Feb 2006 00:37:55 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page#comment-3942</guid>
		<description>And just for giggles, here&#039;s all three rolled into one!


javascript:if (window.document.body.outerHTML != undefined){&#039;&#039;+window.document.body.outerHTML+&#039;&#039;} else if (document.getElementsByTagName(&quot;html&quot;)[0].innerHTML != undefined){&#039;&#039;+document.getElementsByTagName(&quot;html&quot;)[0].innerHTML+&#039;&#039;} else if (window.document.documentElement.outerHTML != undefined){&#039;&#039;+window.document.documentElement.outerHTML+&#039;&#039;} else { alert(&#039;Your browser does not support this method of viewing the page source.&#039;) };</description>
		<content:encoded><![CDATA[<p>And just for giggles, here&#8217;s all three rolled into one!</p>
<p>javascript:if (window.document.body.outerHTML != undefined){&#8221;+window.document.body.outerHTML+&#8221;} else if (document.getElementsByTagName(&#8220;html&#8221;)[0].innerHTML != undefined){&#8221;+document.getElementsByTagName(&#8220;html&#8221;)[0].innerHTML+&#8221;} else if (window.document.documentElement.outerHTML != undefined){&#8221;+window.document.documentElement.outerHTML+&#8221;} else { alert(&#8216;Your browser does not support this method of viewing the page source.&#8217;) };</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: llook</title>
		<link>http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page/comment-page-1#comment-3937</link>
		<dc:creator>llook</dc:creator>
		<pubDate>Thu, 23 Feb 2006 21:57:09 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page#comment-3937</guid>
		<description>I mean &lt;code&gt;javascript:&#039;&lt;xmp&gt;&#039;+document.getElementsByTagName(&quot;html&quot;)[0].innerHTML+&#039;&lt;/xmp&gt;&#039;;&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>I mean <code>javascript:'&lt;xmp&gt;'+document.getElementsByTagName("html")[0].innerHTML+'&lt;/xmp&gt;';</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: llook</title>
		<link>http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page/comment-page-1#comment-3936</link>
		<dc:creator>llook</dc:creator>
		<pubDate>Thu, 23 Feb 2006 21:54:33 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page#comment-3936</guid>
		<description>It works in IE and Opera. The same bookmarklet for Firefox&amp;co is here:

&lt;code&gt;javascript:&#039;&#039;+document.getElementsByTagName(&quot;html&quot;)[0].innerHTML+&#039;&#039;;&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>It works in IE and Opera. The same bookmarklet for Firefox&amp;co is here:</p>
<p><code>javascript:''+document.getElementsByTagName("html")[0].innerHTML+'';</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jc</title>
		<link>http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page/comment-page-1#comment-3935</link>
		<dc:creator>Jc</dc:creator>
		<pubDate>Thu, 23 Feb 2006 21:02:57 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page#comment-3935</guid>
		<description>So simple yet so cool. Dunno why I never thought of this...

Thanks for the great tip!</description>
		<content:encoded><![CDATA[<p>So simple yet so cool. Dunno why I never thought of this&#8230;</p>
<p>Thanks for the great tip!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page/comment-page-1#comment-3932</link>
		<dc:creator>James</dc:creator>
		<pubDate>Thu, 23 Feb 2006 19:32:41 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page#comment-3932</guid>
		<description>OK, hopefully the last time (HTML and quotes were being converted):

javascript:void(window.open(&quot;javascript:&#039;&lt;xmp&gt;&#039; + opener.window.document.documentElement.outerHTML + &#039;&lt;/xmp&gt;&#039;&quot;));</description>
		<content:encoded><![CDATA[<p>OK, hopefully the last time (HTML and quotes were being converted):</p>
<p>javascript:void(window.open(&#34;javascript:&#39;&lt;xmp&gt;&#39; + opener.window.document.documentElement.outerHTML + &#39;&lt;/xmp&gt;&#39;&#34;));</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page/comment-page-1#comment-3931</link>
		<dc:creator>James</dc:creator>
		<pubDate>Thu, 23 Feb 2006 19:24:29 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page#comment-3931</guid>
		<description>Oops, the previous comment should say:

javascript:void(window.open(&quot;javascript:&#039;&#039; + opener.window.document.documentElement.outerHTML + &#039;&#039;&quot;));</description>
		<content:encoded><![CDATA[<p>Oops, the previous comment should say:</p>
<p>javascript:void(window.open(&#8220;javascript:&#8221; + opener.window.document.documentElement.outerHTML + &#8221;&#8221;));</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page/comment-page-1#comment-3929</link>
		<dc:creator>James</dc:creator>
		<pubDate>Thu, 23 Feb 2006 19:19:35 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page#comment-3929</guid>
		<description>Or, push it to a new popup window so you don&#039;t lose the page:

javascript:window.open(&quot;javascript:&#039;&#039; +opener.window.document.documentElement.outerHTML +&#039;&#039;&quot;);</description>
		<content:encoded><![CDATA[<p>Or, push it to a new popup window so you don&#8217;t lose the page:</p>
<p>javascript:window.open(&#8220;javascript:&#8221; +opener.window.document.documentElement.outerHTML +&#8221;&#8221;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: michael</title>
		<link>http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page/comment-page-1#comment-3928</link>
		<dc:creator>michael</dc:creator>
		<pubDate>Thu, 23 Feb 2006 18:46:17 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/archives/ie-tip-cheeky-way-to-see-the-current-state-of-the-page#comment-3928</guid>
		<description>or for IE:

&lt;code&gt;javascript:&#039;&lt;xmp&gt;&#039;
+window.document.documentElement.outerHTML
+&#039;&lt;/xmp&gt;&#039;;&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>or for IE:</p>
<p><code>javascript:'&lt;xmp&gt;'<br />
+window.document.documentElement.outerHTML<br />
+'&lt;/xmp&gt;';</code></p>
]]></content:encoded>
	</item>
</channel>
</rss>

