<?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"
	>
<channel>
	<title>Comments on: Firebug Tutorial - Script Tab : Javascript Debugging</title>
	<atom:link href="http://michaelsync.net/2007/09/30/firebug-tutorial-script-tab-javascript-debugging/feed" rel="self" type="application/rss+xml" />
	<link>http://michaelsync.net/2007/09/30/firebug-tutorial-script-tab-javascript-debugging</link>
	<description>Sharing our knowledge</description>
	<pubDate>Sun, 20 Jul 2008 15:58:29 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: Object Oriented JavaScript &#171; Christopher Grant</title>
		<link>http://michaelsync.net/2007/09/30/firebug-tutorial-script-tab-javascript-debugging#comment-66437</link>
		<dc:creator>Object Oriented JavaScript &#171; Christopher Grant</dc:creator>
		<pubDate>Wed, 28 May 2008 15:17:17 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2007/09/30/firebug-tutorial-script-tab-javascript-debugging#comment-66437</guid>
		<description>[...] review the tutorial on using Firebug  and additional tips on debugging with [...]</description>
		<content:encoded><![CDATA[<p>[...] review the tutorial on using Firebug  and additional tips on debugging with [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Everything about Firebug - 21 22 Great Resources &#187; Blog at veanndesign.com</title>
		<link>http://michaelsync.net/2007/09/30/firebug-tutorial-script-tab-javascript-debugging#comment-54530</link>
		<dc:creator>Everything about Firebug - 21 22 Great Resources &#187; Blog at veanndesign.com</dc:creator>
		<pubDate>Tue, 15 Apr 2008 02:48:37 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2007/09/30/firebug-tutorial-script-tab-javascript-debugging#comment-54530</guid>
		<description>[...] Script Tab: JavaScript Tutorial by Michael Sync [...]</description>
		<content:encoded><![CDATA[<p>[...] Script Tab: JavaScript Tutorial by Michael Sync [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: William Mitchell</title>
		<link>http://michaelsync.net/2007/09/30/firebug-tutorial-script-tab-javascript-debugging#comment-47572</link>
		<dc:creator>William Mitchell</dc:creator>
		<pubDate>Tue, 25 Mar 2008 08:56:08 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2007/09/30/firebug-tutorial-script-tab-javascript-debugging#comment-47572</guid>
		<description>p.s.
'Sorry about the mangled HTML above.  You can find the code at http://u-lazy-u.com/fbtest.htm</description>
		<content:encoded><![CDATA[<p>p.s.<br />
&#8216;Sorry about the mangled HTML above.  You can find the code at <a href="http://u-lazy-u.com/fbtest.htm" rel="nofollow">http://u-lazy-u.com/fbtest.htm</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: William Mitchell</title>
		<link>http://michaelsync.net/2007/09/30/firebug-tutorial-script-tab-javascript-debugging#comment-47558</link>
		<dc:creator>William Mitchell</dc:creator>
		<pubDate>Tue, 25 Mar 2008 07:30:28 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2007/09/30/firebug-tutorial-script-tab-javascript-debugging#comment-47558</guid>
		<description>I see the exact same behavior that's described by Edward R. Joell above.

I've parked a trivial script at http://u-lazy-u.com/fbtest.htm.  Here it is:




    
        debugger;
        alert("Hello!");
    &#60;/script



With Script selected in Firebug 1.05 I can see fbtest.htm and set a breakpoint on the alert call.  (Note the 'debugger;' above that, too!)

If I refresh with the toolbar button I see the Firebug portion of the window overlaid for an instant with "Firebug is disabled.  This page cannot be displayed."  Then I see the alert pop-up.

If I click in the script code then Edit&#62;Select All, look what I get on the clipboard -- there's that "Firebug is disabled" text but that text is not visible on the screen when I hit Select All!

-----
Firebug is disabled

This page can not be displayed.
1
2
3
4 
5 debugger;
6 alert("Hello!");
7 &#60;/script
8
9
10
----

I see the same behavior when loading fbtest.htm as local file -- file:///c:/y/gcs/fbtest.htm.

One more thing: if I follow the directions in http://www.litfuel.net/pics/Firebug_AJAX_small.mov, the breakpoint example works.</description>
		<content:encoded><![CDATA[<p>I see the exact same behavior that&#8217;s described by Edward R. Joell above.</p>
<p>I&#8217;ve parked a trivial script at <a href="http://u-lazy-u.com/fbtest.htm" rel="nofollow">http://u-lazy-u.com/fbtest.htm</a>.  Here it is:</p>
<p>        debugger;<br />
        alert(&#8221;Hello!&#8221;);<br />
    &lt;/script</p>
<p>With Script selected in Firebug 1.05 I can see fbtest.htm and set a breakpoint on the alert call.  (Note the &#8216;debugger;&#8217; above that, too!)</p>
<p>If I refresh with the toolbar button I see the Firebug portion of the window overlaid for an instant with &#8220;Firebug is disabled.  This page cannot be displayed.&#8221;  Then I see the alert pop-up.</p>
<p>If I click in the script code then Edit&gt;Select All, look what I get on the clipboard &#8212; there&#8217;s that &#8220;Firebug is disabled&#8221; text but that text is not visible on the screen when I hit Select All!</p>
<p>&#8212;&#8211;<br />
Firebug is disabled</p>
<p>This page can not be displayed.<br />
1<br />
2<br />
3<br />
4<br />
5 debugger;<br />
6 alert(&#8221;Hello!&#8221;);<br />
7 &lt;/script<br />
8<br />
9<br />
10<br />
&#8212;-</p>
<p>I see the same behavior when loading fbtest.htm as local file &#8212; file:///c:/y/gcs/fbtest.htm.</p>
<p>One more thing: if I follow the directions in <a href="http://www.litfuel.net/pics/Firebug_AJAX_small.mov" rel="nofollow">http://www.litfuel.net/pics/Firebug_AJAX_small.mov</a>, the breakpoint example works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Sync</title>
		<link>http://michaelsync.net/2007/09/30/firebug-tutorial-script-tab-javascript-debugging#comment-40810</link>
		<dc:creator>Michael Sync</dc:creator>
		<pubDate>Wed, 20 Feb 2008 00:41:46 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2007/09/30/firebug-tutorial-script-tab-javascript-debugging#comment-40810</guid>
		<description>Can you give me the link of the page that you are not able to debug? or you can send me the page that you are having the problem... 

I have been using it for long time and I don't have that problem. Not only me. There are a lot of web developers who are really happy with firebug.</description>
		<content:encoded><![CDATA[<p>Can you give me the link of the page that you are not able to debug? or you can send me the page that you are having the problem&#8230; </p>
<p>I have been using it for long time and I don&#8217;t have that problem. Not only me. There are a lot of web developers who are really happy with firebug.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Edward R. Joell</title>
		<link>http://michaelsync.net/2007/09/30/firebug-tutorial-script-tab-javascript-debugging#comment-40718</link>
		<dc:creator>Edward R. Joell</dc:creator>
		<pubDate>Tue, 19 Feb 2008 17:58:16 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2007/09/30/firebug-tutorial-script-tab-javascript-debugging#comment-40718</guid>
		<description>One issue that I see in this tutorial is what to do when things do not work as described.  In trying to step trhough my java script code Firebug ignores all the breakpoints and flashes a very quick message saying firebug is disabled then proceeds to the next page.  Yet the menu entry specifically states that firebug is enabled.  This is not even the way the problematic page works in firefox.</description>
		<content:encoded><![CDATA[<p>One issue that I see in this tutorial is what to do when things do not work as described.  In trying to step trhough my java script code Firebug ignores all the breakpoints and flashes a very quick message saying firebug is disabled then proceeds to the next page.  Yet the menu entry specifically states that firebug is enabled.  This is not even the way the problematic page works in firefox.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ScottR</title>
		<link>http://michaelsync.net/2007/09/30/firebug-tutorial-script-tab-javascript-debugging#comment-17401</link>
		<dc:creator>ScottR</dc:creator>
		<pubDate>Sat, 08 Dec 2007 17:57:47 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2007/09/30/firebug-tutorial-script-tab-javascript-debugging#comment-17401</guid>
		<description>I could not have asked for a better Firebug tutorial! The information and techniques I learned will definitely help save time in my AJAX development. Nicely done! Thanks</description>
		<content:encoded><![CDATA[<p>I could not have asked for a better Firebug tutorial! The information and techniques I learned will definitely help save time in my AJAX development. Nicely done! Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TravisO</title>
		<link>http://michaelsync.net/2007/09/30/firebug-tutorial-script-tab-javascript-debugging#comment-15501</link>
		<dc:creator>TravisO</dc:creator>
		<pubDate>Fri, 30 Nov 2007 22:11:59 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2007/09/30/firebug-tutorial-script-tab-javascript-debugging#comment-15501</guid>
		<description>This is a great tutorial, so much that the Firebug team should adopt it officially and host it.  You kept it the perfect length (more is less) and provided great screen shots.  I haven't seen such a cleanly executed tutorial in years.</description>
		<content:encoded><![CDATA[<p>This is a great tutorial, so much that the Firebug team should adopt it officially and host it.  You kept it the perfect length (more is less) and provided great screen shots.  I haven&#8217;t seen such a cleanly executed tutorial in years.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Sync</title>
		<link>http://michaelsync.net/2007/09/30/firebug-tutorial-script-tab-javascript-debugging#comment-10994</link>
		<dc:creator>Michael Sync</dc:creator>
		<pubDate>Wed, 14 Nov 2007 02:23:58 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2007/09/30/firebug-tutorial-script-tab-javascript-debugging#comment-10994</guid>
		<description>Thanks a lot, Bhaarat.. I have changed it..</description>
		<content:encoded><![CDATA[<p>Thanks a lot, Bhaarat.. I have changed it..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bhaarat</title>
		<link>http://michaelsync.net/2007/09/30/firebug-tutorial-script-tab-javascript-debugging#comment-10902</link>
		<dc:creator>Bhaarat</dc:creator>
		<pubDate>Tue, 13 Nov 2007 17:13:54 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2007/09/30/firebug-tutorial-script-tab-javascript-debugging#comment-10902</guid>
		<description>there is a correction required. "...put the condition “dwrfs[idx].Name == ‘Happy’” " Should be changed to dwarfs rather than dwrfs. Thanks</description>
		<content:encoded><![CDATA[<p>there is a correction required. &#8220;&#8230;put the condition “dwrfs[idx].Name == ‘Happy’” &#8221; Should be changed to dwarfs rather than dwrfs. Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
