<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ladysign Dev Blog &#187; firebug</title>
	<atom:link href="http://www.ladysign-apps.com/blog/tag/firebug/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ladysign-apps.com/blog</link>
	<description>Girls can code.</description>
	<lastBuildDate>Mon, 12 Dec 2011 16:58:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Tricks with Firebug</title>
		<link>http://www.ladysign-apps.com/blog/code/javascript/alert-in-firebug/</link>
		<comments>http://www.ladysign-apps.com/blog/code/javascript/alert-in-firebug/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 10:20:15 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[firebug]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[mozilla]]></category>

		<guid isPermaLink="false">http://ladysign-apps.com/Blog/?p=6</guid>
		<description><![CDATA[<p><strong>Difficulty:</strong> 1 out of 5 stars</p>
<p>When you use the Firefox browser as much as me, and you are developing with Javascript, there&#8217;s no need to use the [......]</p><p class='read-more'><a href='http://www.ladysign-apps.com/blog/code/javascript/alert-in-firebug/'>继续阅读</a></p>]]></description>
			<content:encoded><![CDATA[<p><strong>Difficulty:</strong> 1 out of 5 stars</p>
<p>When you use the Firefox browser as much as me, and you are developing with Javascript, there&#8217;s no need to use the dirty pop-up box, the Javascript alert anymore. Simple log to your Firebug console.</p>
<p>The Firebug extension is needed: <a target="_blank" href="https://addons.mozilla.org/en-US/firefox/addon/1843">Download Firebug</a>.<br />
(Make sure you have enabled the console in Firebug, and checked Chrome Messages in Options menu.)</p>
<pre class="brush: jscript; title: ;">
var msg = &quot;See me logging this in Firebug!&quot;;
console.log(msg);
</pre>
<p>
It&#8217;s also possible to show error or warning logs in Firebug:
</p>
<pre class="brush: jscript; title: ;">
console.error(&quot;This is an error message&quot;);
console.warn(&quot;Note: this is a warning!&quot;);
</pre>
<p>You can use Firebug also for converting characters with url encoding:<br />
Just type in the Firebug console, see the example with the &#8216;@&#8217; sign:</p>
<pre class="brush: jscript; title: ;">
escape(&quot;@&quot;);
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.ladysign-apps.com/blog/code/javascript/alert-in-firebug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

