<?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>Blog of Adam K Parker &#187; Client Side Programming</title>
	<atom:link href="http://www.adamkparker.com/category/client-side-programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.adamkparker.com</link>
	<description>Home</description>
	<lastBuildDate>Mon, 16 Aug 2010 22:18:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Firebug for Google Chrome and IE6 / IE7 / IE8 (And Beyond!)</title>
		<link>http://www.adamkparker.com/2009-06-27/firebug-for-google-chrome-and-ie6-ie7-ie8-and-beyond/</link>
		<comments>http://www.adamkparker.com/2009-06-27/firebug-for-google-chrome-and-ie6-ie7-ie8-and-beyond/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 04:31:04 +0000</pubDate>
		<dc:creator>Adam Parker</dc:creator>
				<category><![CDATA[Client Side Programming]]></category>

		<guid isPermaLink="false">http://www.adamkparker.com/?p=221</guid>
		<description><![CDATA[<p>The crown jewel of web development (at least for me) has been Firebug. Unfortunately it&#8217;s only for Mozilla Firefox&#8230; or so I thought. Seems like the Firebug team has something they called &#8220;Firebug Lite&#8221;, that allows you to get and use many of the features in Firebug on browsers that don&#8217;t really support extensions. Yes, that includes Safari, Opera, Google Chrome, and Internet Explorer 6 and above.</p>
<p>Sorry Mosaic users, you&#8217;re out of luck on this one ; &#8211; )</p>
<p>So how do you get this magical debugging tool for your browser of choice? Simple, all you have to do&#8230; <a href="http://www.adamkparker.com/2009-06-27/firebug-for-google-chrome-and-ie6-ie7-ie8-and-beyond/" class="read_more">read more</a></p>]]></description>
		<wfw:commentRss>http://www.adamkparker.com/2009-06-27/firebug-for-google-chrome-and-ie6-ie7-ie8-and-beyond/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Cross Browser Minimum Height (CSS)</title>
		<link>http://www.adamkparker.com/2009-04-23/cross-browser-minimum-height-css/</link>
		<comments>http://www.adamkparker.com/2009-04-23/cross-browser-minimum-height-css/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 20:51:52 +0000</pubDate>
		<dc:creator>Adam Parker</dc:creator>
				<category><![CDATA[Client Side Programming]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[XHTML / CSS]]></category>

		<guid isPermaLink="false">http://www.adamkparker.com/?p=201</guid>
		<description><![CDATA[<p>A issue in my coding life is dealing with IE6 and making things work in it and Firefox (among other browsers). One thing I&#8217;ve learned to deal with successfully is putting minimum heights on DIVs. Some people may put a &#8220;spacer&#8221; image or DIV inside the parent DIV to stretch it out. The problem with that, is sometimes it can be buggy. </p>
<p>Here&#8217;s my solution:</p>
<pre name="code" class="php">
#div_name {
    min-height:500px;
    height:auto !important;
    height:500px;
}
</pre>
<p>Firefox will go off of the min-height property, however, IE will ignore that and will render the element according to the height property.&#8230; <a href="http://www.adamkparker.com/2009-04-23/cross-browser-minimum-height-css/" class="read_more">read more</a></p>]]></description>
		<wfw:commentRss>http://www.adamkparker.com/2009-04-23/cross-browser-minimum-height-css/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Easy way to debug Javascript in IE6</title>
		<link>http://www.adamkparker.com/2008-11-14/easy-way-to-debug-javascript-in-ie6/</link>
		<comments>http://www.adamkparker.com/2008-11-14/easy-way-to-debug-javascript-in-ie6/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 16:07:25 +0000</pubDate>
		<dc:creator>Adam Parker</dc:creator>
				<category><![CDATA[Client Side Programming]]></category>

		<guid isPermaLink="false">http://www.adamkparker.com/?p=185</guid>
		<description><![CDATA[<p>While at work today, I found myself chasing a Javascript bug in IE6. For any of you who have even attempted to do such a thing, you know this is no small task. IE6 has a habit of giving generic error messages on non-existing lines of code.</p>
<p>So I went on a search looking for some kind of alternative to this and buried deep within the caves of the internet I found a solution.</p>
<p>It&#8217;s called <a href="http://projects.nikhilk.net/WebDevHelper/Default.aspx">Web Development Helper</a> and it integrates directly into Internet Explorer 6. This plug in has a DOM inspector that allows viewing of all&#8230; <a href="http://www.adamkparker.com/2008-11-14/easy-way-to-debug-javascript-in-ie6/" class="read_more">read more</a></p>]]></description>
		<wfw:commentRss>http://www.adamkparker.com/2008-11-14/easy-way-to-debug-javascript-in-ie6/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
