<?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: Secret to Debugging JavaScript in Safari</title>
	<atom:link href="http://nosheep.net/story/secret-to-debugging-javascript-in-safari/feed/" rel="self" type="application/rss+xml" />
	<link>http://nosheep.net/story/secret-to-debugging-javascript-in-safari/</link>
	<description>Comic book guy, tech geek, and father of two...</description>
	<lastBuildDate>Sat, 19 May 2012 11:01:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
	<item>
		<title>By: Sherri</title>
		<link>http://nosheep.net/story/secret-to-debugging-javascript-in-safari/comment-page-1/#comment-234753</link>
		<dc:creator>Sherri</dc:creator>
		<pubDate>Fri, 25 Feb 2011 17:18:23 +0000</pubDate>
		<guid isPermaLink="false">http://nosheep.net/story/secret-to-debugging-javascript-in-safari/#comment-234753</guid>
		<description>How do you use debugging in safari on iPhone 3GS? I&#039;m about ready to throw my phone.</description>
		<content:encoded><![CDATA[<p>How do you use debugging in safari on iPhone 3GS? I&#8217;m about ready to throw my phone.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Allasso</title>
		<link>http://nosheep.net/story/secret-to-debugging-javascript-in-safari/comment-page-1/#comment-234213</link>
		<dc:creator>Allasso</dc:creator>
		<pubDate>Tue, 22 Feb 2011 14:46:35 +0000</pubDate>
		<guid isPermaLink="false">http://nosheep.net/story/secret-to-debugging-javascript-in-safari/#comment-234213</guid>
		<description>You can access all of the defaults in the com.apple.Safari property list and turn them on or off.

In your home folder in your Finder:

Library &gt; Preferences &gt; com.apple.Safari.plist

double click to open it up in the plist editor.

eg, to turn debugging on, go to the IncludeDebugMenu pref, and change it to 1</description>
		<content:encoded><![CDATA[<p>You can access all of the defaults in the com.apple.Safari property list and turn them on or off.</p>
<p>In your home folder in your Finder:</p>
<p>Library &gt; Preferences &gt; com.apple.Safari.plist</p>
<p>double click to open it up in the plist editor.</p>
<p>eg, to turn debugging on, go to the IncludeDebugMenu pref, and change it to 1</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pankaj Bahuguna</title>
		<link>http://nosheep.net/story/secret-to-debugging-javascript-in-safari/comment-page-1/#comment-149111</link>
		<dc:creator>Pankaj Bahuguna</dc:creator>
		<pubDate>Mon, 16 Nov 2009 07:58:49 +0000</pubDate>
		<guid isPermaLink="false">http://nosheep.net/story/secret-to-debugging-javascript-in-safari/#comment-149111</guid>
		<description>window.print() / self.print()
both of them are not woking in safari 3.x.</description>
		<content:encoded><![CDATA[<p>window.print() / self.print()<br />
both of them are not woking in safari 3.x.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BorkWeb &#187; The Ajax Experience: Leveraging Ajax for Enterprise Application Development</title>
		<link>http://nosheep.net/story/secret-to-debugging-javascript-in-safari/comment-page-1/#comment-16255</link>
		<dc:creator>BorkWeb &#187; The Ajax Experience: Leveraging Ajax for Enterprise Application Development</dc:creator>
		<pubDate>Mon, 30 Oct 2006 15:11:42 +0000</pubDate>
		<guid isPermaLink="false">http://nosheep.net/story/secret-to-debugging-javascript-in-safari/#comment-16255</guid>
		<description>[...] Debugging difficult (not entirely true) [...]</description>
		<content:encoded><![CDATA[<p>[...] Debugging difficult (not entirely true) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zbtirrell</title>
		<link>http://nosheep.net/story/secret-to-debugging-javascript-in-safari/comment-page-1/#comment-759</link>
		<dc:creator>zbtirrell</dc:creator>
		<pubDate>Fri, 03 Feb 2006 22:07:16 +0000</pubDate>
		<guid isPermaLink="false">http://nosheep.net/story/secret-to-debugging-javascript-in-safari/#comment-759</guid>
		<description>ooh, that&#039;s even cleaner than the application I got, I&#039;ll definitely use that method at home!</description>
		<content:encoded><![CDATA[<p>ooh, that&#8217;s even cleaner than the application I got, I&#8217;ll definitely use that method at home!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesse Skinner</title>
		<link>http://nosheep.net/story/secret-to-debugging-javascript-in-safari/comment-page-1/#comment-758</link>
		<dc:creator>Jesse Skinner</dc:creator>
		<pubDate>Fri, 03 Feb 2006 16:03:58 +0000</pubDate>
		<guid isPermaLink="false">http://nosheep.net/story/secret-to-debugging-javascript-in-safari/#comment-758</guid>
		<description>From the &lt;a href=&quot;http://developer.apple.com/internet/safari/faq.html#anchor14&quot; rel=&quot;nofollow&quot;&gt;Safari Developer FAQ&lt;/a&gt;:

&lt;blockquote&gt;To display the debug menu, open a Terminal window and type:

&lt;code&gt;defaults write com.apple.Safari IncludeDebugMenu 1&lt;/code&gt;&lt;/blockquote&gt;

Unfortunately, the JavaScript debugger in Safari is as bad as the default error messages in Internet Explorer. But, being able to output to the console really makes up for it (almost). You can just do:

&lt;code&gt;window.console.log(&quot;hello world&quot;);&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>From the <a href="http://developer.apple.com/internet/safari/faq.html#anchor14" rel="nofollow">Safari Developer FAQ</a>:</p>
<blockquote><p>To display the debug menu, open a Terminal window and type:</p>
<p><code>defaults write com.apple.Safari IncludeDebugMenu 1</code></p></blockquote>
<p>Unfortunately, the JavaScript debugger in Safari is as bad as the default error messages in Internet Explorer. But, being able to output to the console really makes up for it (almost). You can just do:</p>
<p><code>window.console.log("hello world");</code></p>
]]></content:encoded>
	</item>
</channel>
</rss>

