<?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>Web Development - Programming - Coding Recipes &#187; Web Design</title>
	<atom:link href="http://codingrecipes.com/category/web-design/feed" rel="self" type="application/rss+xml" />
	<link>http://codingrecipes.com</link>
	<description></description>
	<lastBuildDate>Wed, 28 Jul 2010 19:58:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>jQuery: How To Check If An Object Exists</title>
		<link>http://codingrecipes.com/jquery-how-to-check-if-an-object-exists</link>
		<comments>http://codingrecipes.com/jquery-how-to-check-if-an-object-exists#comments</comments>
		<pubDate>Tue, 25 May 2010 20:25:34 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://codingrecipes.com/?p=941</guid>
		<description><![CDATA[
   if &#40;$&#40;'#myDiv'&#41;.length&#41;
      $&#40;'#myDiv'&#41;.show&#40;&#41;;

Source:
http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_test_whether_an_element_exists.3F
]]></description>
		<wfw:commentRss>http://codingrecipes.com/jquery-how-to-check-if-an-object-exists/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery: Scroll Window To The Top Of An Object</title>
		<link>http://codingrecipes.com/jquery-scroll-window-to-top-of-an-object</link>
		<comments>http://codingrecipes.com/jquery-scroll-window-to-top-of-an-object#comments</comments>
		<pubDate>Tue, 25 May 2010 20:23:32 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://codingrecipes.com/?p=939</guid>
		<description><![CDATA[Here is how to do this:

var offset = $&#40;'#OBJECT-ID'&#41;.offset&#40;&#41;.top;
$&#40;'html,body'&#41;.animate&#40;&#123;
   scrollTop: offset
&#125;, 500&#41;;

]]></description>
		<wfw:commentRss>http://codingrecipes.com/jquery-scroll-window-to-top-of-an-object/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Create WordPress Widgets</title>
		<link>http://codingrecipes.com/how-to-create-wordpress-widgets</link>
		<comments>http://codingrecipes.com/how-to-create-wordpress-widgets#comments</comments>
		<pubDate>Fri, 14 May 2010 23:43:58 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://codingrecipes.com/?p=926</guid>
		<description><![CDATA[No need for a huge fancy post, here is a very simple Wordpress widget:
You must paste this code into your theme&#8217;s functions.php file located at: /wp-content/themes/YOUR_THEME

class My_Simple_Widget {
&#160;
   function control(){
      $data = get_option('My_Simple_Widget_data');
      ?&#62;
         &#60;p&#62;&#60;label&#62;Title:&#60;/label&#62; [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/how-to-create-wordpress-widgets/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Best Overall Code Editor Ever: Komodo Edit</title>
		<link>http://codingrecipes.com/the-best-overall-code-editor-ever-komodo-edit</link>
		<comments>http://codingrecipes.com/the-best-overall-code-editor-ever-komodo-edit#comments</comments>
		<pubDate>Tue, 04 May 2010 22:00:03 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML/XHTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Komodo Edit]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://codingrecipes.com/?p=915</guid>
		<description><![CDATA[A while back I wrote a post about what I think is the best Python code editor but I decided to write an update and write a little more about Komodo Edit&#8230;
I use Dreamweaver to write HTML/CSS/JavaScript/PHP code and a few days ago I decided to open Komodo Edit and see how it does with [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/the-best-overall-code-editor-ever-komodo-edit/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>To Validate Or Not To Validate Your Markup</title>
		<link>http://codingrecipes.com/to-validate-or-not-to-validate-your-markup</link>
		<comments>http://codingrecipes.com/to-validate-or-not-to-validate-your-markup#comments</comments>
		<pubDate>Tue, 13 Apr 2010 21:34:12 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML/XHTML]]></category>
		<category><![CDATA[Web Browsers]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://codingrecipes.com/?p=880</guid>
		<description><![CDATA[To be honest, I personally think that as long as my pages work fine and look the same on all the major browsers, I&#8217;m fine. But for me, it is also very important to properly balance all my tags and try to keep the pages as close to be valid as possible.
But here is something [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/to-validate-or-not-to-validate-your-markup/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Rotate Text Using CSS</title>
		<link>http://codingrecipes.com/rotate-text-using-css</link>
		<comments>http://codingrecipes.com/rotate-text-using-css#comments</comments>
		<pubDate>Sat, 10 Apr 2010 22:43:48 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML/XHTML]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://codingrecipes.com/?p=878</guid>
		<description><![CDATA[This is not a standard property yet but here it is:

.THE_TEXT_CLASS &#123;
   filter: progid:DXImageTransform.Microsoft.BasicImage&#40;rotation=3&#41;; /* IE */
   -webkit-transform: rotate&#40;-90deg&#41;;
   -moz-transform: rotate&#40;-90deg&#41;;
   -o-transform: rotate&#40;-90deg&#41;; /* Opera */
&#125;

For now, it&#8217;s best if you use images instead&#8230;
]]></description>
		<wfw:commentRss>http://codingrecipes.com/rotate-text-using-css/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Way To Send A Message To Apple About Flash</title>
		<link>http://codingrecipes.com/a-way-to-send-a-message-to-apple-about-flash</link>
		<comments>http://codingrecipes.com/a-way-to-send-a-message-to-apple-about-flash#comments</comments>
		<pubDate>Sat, 10 Apr 2010 20:55:50 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Annoying Stuff]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://codingrecipes.com/?p=876</guid>
		<description><![CDATA[Here is what can be done, someone could write a piece of JS code and make a big Flash banner, big I mean very big and then the JavaScript could check for iPad and iPhone and try to show the banner to them&#8230;
You can then urge web developers and web masters to put it on [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/a-way-to-send-a-message-to-apple-about-flash/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery UI Dialog And The Enter &#8211; Return Key Problem</title>
		<link>http://codingrecipes.com/jquery-ui-dialog-and-the-enter-return-key-problem</link>
		<comments>http://codingrecipes.com/jquery-ui-dialog-and-the-enter-return-key-problem#comments</comments>
		<pubDate>Thu, 18 Feb 2010 06:53:38 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[Annoying Stuff]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=810</guid>
		<description><![CDATA[This is another post for my &#8216;Annoying Stuff&#8217; collection and this one is very, so very annoying&#8230;
The problem is that jQuery UI, supports forms in dialogs but the problem is that a user can&#8217;t hit &#8216;Enter&#8217; to submit the form, it will break everything, a user has to actually hit the &#8216;Submit&#8217; (or whatever) button [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/jquery-ui-dialog-and-the-enter-return-key-problem/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>onMouseOut fix on nested elements &#8211; JavaScript</title>
		<link>http://codingrecipes.com/onmouseout-fix-on-nested-elements-javascript</link>
		<comments>http://codingrecipes.com/onmouseout-fix-on-nested-elements-javascript#comments</comments>
		<pubDate>Wed, 03 Feb 2010 23:07:14 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=792</guid>
		<description><![CDATA[When you have nested elements and you add an onMouseOut event handler to the parent element, browsers trigger onMouseOut event when mouse pointer hovers it&#8217;s child elements.
While this is a standard behaviour, for one project I needed to write a code to override this behaviour.
With this code, when you mouse over the child elements, onMouseOut [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/onmouseout-fix-on-nested-elements-javascript/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Fixing markItUp layout issues in some browsers&#8230;</title>
		<link>http://codingrecipes.com/fixing-markitup-layout-issues-in-some-browsers</link>
		<comments>http://codingrecipes.com/fixing-markitup-layout-issues-in-some-browsers#comments</comments>
		<pubDate>Thu, 19 Nov 2009 23:25:14 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=720</guid>
		<description><![CDATA[markItUp is a cool little text editor and the nice thing about it is that it&#8217;s very simple and light weight.
I had some layout issues in Gecko and Webkit browsers and the way to fix it is this:
1 &#8211; Go to:
     /markitup/skins/markitup
2 &#8211; Open style.css and find:

.markItUpEditor &#123;
	font:12px 'Courier New', Courier, [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/fixing-markitup-layout-issues-in-some-browsers/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
