<?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>Forums, Blogs, Wikis &#187; firefox</title>
	<atom:link href="http://forumsblogswikis.com/tag/firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://forumsblogswikis.com</link>
	<description>News on forums, blogs, wikis, cms, etc</description>
	<lastBuildDate>Tue, 09 Feb 2010 11:37:06 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Editing a page from FireFox</title>
		<link>http://forumsblogswikis.com/2008/12/07/editing-a-page-from-firefox/</link>
		<comments>http://forumsblogswikis.com/2008/12/07/editing-a-page-from-firefox/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 15:13:53 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Web Links]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://forumsblogswikis.com/?p=322</guid>
		<description><![CDATA[Found a quick little JavaScript trick that lets you edit page content from within FireFox.  Copy and paste the following into your address bar and press enter.
javascript:document.body.contentEditable='true'; document.designMode='on'; void 0
Everything on the page becomes editable.  Sure, it doesn&#8217;t affect the file on server.  But once you&#8217;re done you can save the resulting [...]]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2008/12/07/editing-a-page-from-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debug function for FireBug</title>
		<link>http://forumsblogswikis.com/2008/09/20/debug-function-for-firebug/</link>
		<comments>http://forumsblogswikis.com/2008/09/20/debug-function-for-firebug/#comments</comments>
		<pubDate>Sat, 20 Sep 2008 12:26:06 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[firebug]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://forumsblogswikis.com/?p=302</guid>
		<description><![CDATA[If you do much JavaScript coding and have FireBug odds are good you know that you can call console.info() to output to the FireBug console.  But what happens if you leave your console.info() call in your code and a visitor looks with IE?  It'll throw an error.  So here's a quick, little [...]]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2008/09/20/debug-function-for-firebug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Try this &#8211; about:robots in FireFox</title>
		<link>http://forumsblogswikis.com/2008/08/03/try-this-aboutrobots-in-firefox/</link>
		<comments>http://forumsblogswikis.com/2008/08/03/try-this-aboutrobots-in-firefox/#comments</comments>
		<pubDate>Sun, 03 Aug 2008 17:57:07 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[easter egg]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[robot]]></category>
		<category><![CDATA[robots]]></category>
		<category><![CDATA[spider]]></category>

		<guid isPermaLink="false">http://forumsblogswikis.com/?p=292</guid>
		<description><![CDATA[Type about:robots into the address bar in FireFox and press enter.  You'll find an easter egg.

]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2008/08/03/try-this-aboutrobots-in-firefox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>JavaScript Error &#8216;expected identifier, string or number&#8217; in IE</title>
		<link>http://forumsblogswikis.com/2008/07/21/javascript-error-expected-identifier-string-or-number-in-ie/</link>
		<comments>http://forumsblogswikis.com/2008/07/21/javascript-error-expected-identifier-string-or-number-in-ie/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 16:03:51 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[errors]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[ie7]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[js]]></category>

		<guid isPermaLink="false">http://forumsblogswikis.com/?p=289</guid>
		<description><![CDATA[Sometimes you get those errors that just pick at you and you can't seem to find a solution.  It happened to me this morning when testing a JavaScript library I'm writing in IE7.  FireFox worked without a hitch, but IE threw an 'expected identifier, string or number' error pointing to the last line [...]]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2008/07/21/javascript-error-expected-identifier-string-or-number-in-ie/feed/</wfw:commentRss>
		<slash:comments>112</slash:comments>
		</item>
		<item>
		<title>Adsense notifier 0.9.6 released</title>
		<link>http://forumsblogswikis.com/2008/02/07/adsense-notifier-096-released/</link>
		<comments>http://forumsblogswikis.com/2008/02/07/adsense-notifier-096-released/#comments</comments>
		<pubDate>Fri, 08 Feb 2008 02:29:01 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Unfiled]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[monetize]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[releases]]></category>

		<guid isPermaLink="false">http://forumsblogswikis.com/2008/02/07/adsense-notifier-096-released/</guid>
		<description><![CDATA[A couple of months ago I noticed that the Adsense notifier down in my status bar was showing all zeros.  At the same time Google started using Ajax in the Adsense pages to show reports, and I assumed the two were related.  Since the last time there was a problem with the Adsense [...]]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2008/02/07/adsense-notifier-096-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debug window for Javascript</title>
		<link>http://forumsblogswikis.com/2008/01/11/javascript-debug-window/</link>
		<comments>http://forumsblogswikis.com/2008/01/11/javascript-debug-window/#comments</comments>
		<pubDate>Sat, 12 Jan 2008 02:39:26 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://forumsblogswikis.com/2008/01/11/javascript-debug-window/</guid>
		<description><![CDATA[I wrote this short little function when I got tired of debugging JavaScript by using the alert() function.  It pops up a new window and outputs whatever you send to the function along with the UTC date.
PLAIN TEXT
JavaScript:




function logOutput&#40;message&#41;


&#160; &#160; &#123;


&#160; &#160; debugWindow = window.open&#40;'', 'dbgWindow', 'height=300,width=400'&#41;; 


&#160; &#160; var newDate = new Date&#40;&#41;;


&#160; [...]]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2008/01/11/javascript-debug-window/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FxIF plugin for FireFox</title>
		<link>http://forumsblogswikis.com/2007/12/02/fxif-plugin-for-firefox/</link>
		<comments>http://forumsblogswikis.com/2007/12/02/fxif-plugin-for-firefox/#comments</comments>
		<pubDate>Sun, 02 Dec 2007 14:31:43 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Web Links]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://forumsblogswikis.com/2007/12/02/fxif-plugin-for-firefox/</guid>
		<description><![CDATA[For those FireFox users out there there is a new plugin called FxIF that will allow you to view EXIF data on any image by right clicking and selecting Properties.

]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2007/12/02/fxif-plugin-for-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create a favicon.ico file in Photoshop</title>
		<link>http://forumsblogswikis.com/2007/09/03/how-to-create-a-faviconico-file-in-photoshop/</link>
		<comments>http://forumsblogswikis.com/2007/09/03/how-to-create-a-faviconico-file-in-photoshop/#comments</comments>
		<pubDate>Mon, 03 Sep 2007 20:05:28 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[photoshop]]></category>

		<guid isPermaLink="false">http://www.forumsblogswikis.com/2007/09/03/how-to-create-a-faviconico-file-in-photoshop/</guid>
		<description><![CDATA[There is a small graphic file that most people probably don't know about, but your web browser does.  It's the favicon.ico file and it can help your site to stand out.
Internet Explorer
If you're using  IE, look up at your address bar.  It probably looks something like the following graphic.

If you look to [...]]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2007/09/03/how-to-create-a-faviconico-file-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spell Checking and Firefox 2.0</title>
		<link>http://forumsblogswikis.com/2007/06/20/spell-checking-and-firefox-20/</link>
		<comments>http://forumsblogswikis.com/2007/06/20/spell-checking-and-firefox-20/#comments</comments>
		<pubDate>Wed, 20 Jun 2007 18:06:22 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://www.forumsblogswikis.com/2007/06/20/spell-checking-and-firefox-20/</guid>
		<description><![CDATA[I had been putting off upgrading from Firefox 1.5 to 2.0 with the fear that some of the extensions I have installed wouldn't work.  Once I finally sat down and upgraded I was surprised to find spell checking built in.  Now any text box behaves like Word when I misspell a word.  [...]]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2007/06/20/spell-checking-and-firefox-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>coComment slowing down FireFox</title>
		<link>http://forumsblogswikis.com/2007/06/14/cocomment-slowing-down-firefox/</link>
		<comments>http://forumsblogswikis.com/2007/06/14/cocomment-slowing-down-firefox/#comments</comments>
		<pubDate>Thu, 14 Jun 2007 14:58:30 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[cocomment]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.forumsblogswikis.com/2007/06/14/cocomment-slowing-down-firefox/</guid>
		<description><![CDATA[As a blogger you probably comment on blogs all over the internet.  If you're like me it's that interaction that drew you to blogging in the first place.  But it's difficult to track all of those conversations.
A few days ago I downloaded and installed a plugin for Firefox called coComment which promises, and [...]]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2007/06/14/cocomment-slowing-down-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
