<?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>MoonKat Creations</title>
	<atom:link href="http://www.moonkatcreations.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.moonkatcreations.com</link>
	<description>Not just another WordPress blog about web design</description>
	<lastBuildDate>Tue, 02 Feb 2010 18:41:05 +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>Easy Textarea Maxlength Script</title>
		<link>http://www.moonkatcreations.com/2010/easy-textarea-maxlength-script/</link>
		<comments>http://www.moonkatcreations.com/2010/easy-textarea-maxlength-script/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 18:39:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.moonkatcreations.com/?p=268</guid>
		<description><![CDATA[This is a very simple maxlength script, quickly and easily implemented.]]></description>
			<content:encoded><![CDATA[<p>This is a very simple maxlength script, quickly and easily implemented. The original is found at <a title="Link to Dynamic Drive Textarea Maxlength Script" href="http://www.dynamicdrive.com/dynamicindex16/maxlength.htm" target="_blank">http://www.dynamicdrive.com/dynamicindex16/maxlength.htm</a></p>
<p><code><br />
/***********************************************<br />
* Textarea Maxlength script- © Dynamic Drive (www.dynamicdrive.com)<br />
* This notice must stay intact for legal use.<br />
* Visit http://www.dynamicdrive.com/ for full source code<br />
***********************************************/</p>
<p>function ismaxlength(obj){<br />
var mlength=obj.getAttribute? parseInt(obj.getAttribute("maxlength")) : ""<br />
if (obj.getAttribute &amp;&amp; obj.value.length&gt;mlength)<br />
obj.value=obj.value.substring(0,mlength)<br />
}</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.moonkatcreations.com/2010/easy-textarea-maxlength-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows XP Mode for Testing IE6 on Windows 7 Machine</title>
		<link>http://www.moonkatcreations.com/2010/windows-xp-mode-for-testing-ie6-on-windows-7-machine/</link>
		<comments>http://www.moonkatcreations.com/2010/windows-xp-mode-for-testing-ie6-on-windows-7-machine/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 18:40:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[browser bugs]]></category>
		<category><![CDATA[browser testing]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[internet explorer]]></category>

		<guid isPermaLink="false">http://www.moonkatcreations.com/?p=261</guid>
		<description><![CDATA[When I was researching ways to run IE6 for browser testing purposes on my Windows 7 machine I came across XP Mode.

I never thought I'd say this, but "Thanks Microsoft for this helpful development tool."]]></description>
			<content:encoded><![CDATA[<p>When I was researching ways to run IE6 for browser testing purposes on my Windows 7 machine (other than with IE Tester, which is buggy, or Multiple IE, which I don&#8217;t think even runs on Windows 7), I came across XP Mode.</p>
<p>It&#8217;s simple to install, and it comes preinstalled with IE6. You don&#8217;t even need a serial number for XP. Just follow the steps on the page (they&#8217;re surprisingly straightforward) and you&#8217;re golden. The only thing that was even slightly tricky was configuring BIOS if your hardware virtualization isn&#8217;t turned on, but I managed with no problems, and I never do any configuration.</p>
<p>I never thought I&#8217;d say this, but &#8220;Thanks Microsoft for this helpful development tool.&#8221;</p>
<p>Installation page: <a href="http://www.microsoft.com/windows/virtual-pc/download.aspx">http://www.microsoft.com/windows/virtual-pc/download.aspx</a></p>
<p>BIOS configuration instructions: <a href="http://www.microsoft.com/windows/virtual-pc/support/configure-bios.aspx">http://www.microsoft.com/windows/virtual-pc/support/configure-bios.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.moonkatcreations.com/2010/windows-xp-mode-for-testing-ie6-on-windows-7-machine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Option Values from a Select</title>
		<link>http://www.moonkatcreations.com/2010/get-option-values-from-a-select/</link>
		<comments>http://www.moonkatcreations.com/2010/get-option-values-from-a-select/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 23:35:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.moonkatcreations.com/?p=255</guid>
		<description><![CDATA[This is an easy way to grab all the option values from any regular html select, and print them to your Firebug console as a comma separated list.]]></description>
			<content:encoded><![CDATA[<p>This is an easy way to grab all the option values from any regular html select, and print them to your Firebug console as a comma separated list. (I found this useful when I needed to grab the state names listed on a previous version of a company website.)</p>
<p><code><br />
var newArray = [];<br />
var list = $('#selectID').find('option');<br />
for(var i = 0; i &lt; list.length; i++) {<br />
newArray[i] = list[i].text;<br />
}<br />
console.log(newArray.join(", "));<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.moonkatcreations.com/2010/get-option-values-from-a-select/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE6 Duplicate Content Bug</title>
		<link>http://www.moonkatcreations.com/2009/ie6-duplicate-content-bug/</link>
		<comments>http://www.moonkatcreations.com/2009/ie6-duplicate-content-bug/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 22:10:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.moonkatcreations.com/?p=236</guid>
		<description><![CDATA[When you have text mysteriously repeating after a series of floated elements in Internet Exploder 6, the general consensus is that it is due to comments being sandwiched between floats, as explained here:
http://www.positioniseverything.net/explorer/dup-characters.html
However, when I faced this problem today, I systematically removed all of my comments from my html, and the problem still persisted. I [...]]]></description>
			<content:encoded><![CDATA[<p>When you have text mysteriously repeating after a series of floated elements in Internet Exploder 6, the general consensus is that it is due to comments being sandwiched between floats, as explained here:</p>
<p><a title="Position Is Everything" href="http://www.positioniseverything.net/explorer/dup-characters.html" target="_blank">http://www.positioniseverything.net/explorer/dup-characters.html</a></p>
<p>However, when I faced this problem today, I systematically removed <em>all</em> of my comments from my html, and the problem still persisted. I also tried adding a 3px negative right margin to the element as the above article recommended, as well as &#8216;display:inline;&#8217; with no luck. So, still not knowing the issue, I took a stab at a solution, and it worked.</p>
<p><strong>I applied the style &#8216;position: relative;&#8217; to the element containing the repeated text.</strong> (Not the element that contains the unwanted text, but the original text.)</p>
<p>As with other positioning bugs, this one seems to be rectified with relative positioning. As for the actual cause of my repeated content as separate from the usual cause of float-sandwiched comments, I guess it will remain a mystery.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.moonkatcreations.com/2009/ie6-duplicate-content-bug/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Super Easy jQuery Accordion Menu</title>
		<link>http://www.moonkatcreations.com/2009/super-easy-jquery-accordion-menu/</link>
		<comments>http://www.moonkatcreations.com/2009/super-easy-jquery-accordion-menu/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 22:17:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[accordion menu]]></category>
		<category><![CDATA[navigation]]></category>

		<guid isPermaLink="false">http://www.moonkatcreations.com/?p=228</guid>
		<description><![CDATA[I created this accordion menu rather on accident. (See my previous post, ). I was actually writing jQuery to make a show/hide question answer list, and realized it would be really easy to turn it into an accordion menu.

Here's the result:]]></description>
			<content:encoded><![CDATA[<p>I created this accordion menu rather on accident. (See my previous post, ). I was actually writing jQuery to make a show/hide question answer list, and realized it would be really easy to turn it into an accordion menu.</p>
<p>Here&#8217;s the result:</p>
<ul id="accordian_menu">
<li><a class="toggleLink" href="#">Our Company</a>
<ul class="hidden">
<li><a href="#">About Us</a></li>
<li><a href="#">History</a></li>
</ul>
</li>
<li><a class="toggleLink" href="#">Products/Services</a>
<ul class="hidden">
<li><a href="#">Custom Web Design</a></li>
<li><a href="#">Content Management Solutions</a></li>
<li><a href="#">Website Optimization</a></li>
<li><a href="#">Email Campaigns</a></li>
</ul>
</li>
<li><a class="toggleLink" href="#">Portfolio</a>
<ul class="hidden">
<li><a href="#">Static HTML</a></li>
<li><a href="#">Wordpress Themes</a></li>
<li><a href="#">Emails</a></li>
</ul>
</li>
<li><a class="toggleLink" href="#">Contact</a>
<ul class="hidden">
<li><a href="#">Phone</a></li>
<li><a href="#">Email</a></li>
<li><a href="#">Request a Quote</a></li>
</ul>
</li>
</ul>
<p>How to create it:</p>
<p>1. Include the jQuery library in your page with a script tag. Example:</p>
<pre>&lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/
jquery/1.3.2/jquery.min.js"&gt;&lt;/script&gt;</pre>
<p>This example links directly to the jQuery library hosted on google. You may link to your own copy.</p>
<p>2. Create a new .js document, and add this code:</p>
<pre>$(document).ready(function(){
	$("ul.hidden").hide();
	$("a.toggleLink").click(function () {
		$("ul.hidden").not($(this).next("ul:first")).slideUp();
		$(this).next("ul:first").slideToggle("normal");
	});
});</pre>
<p>Add this file using the &lt;script&gt; tag.</p>
<p>3. Add this to the body of your page:</p>
<pre>&lt;ul id="accordian_menu"&gt;

     &lt;li&gt;&lt;a href="#" class="toggleLink"&gt;Our Company&lt;/a&gt;

     &lt;ul class="hidden"&gt;

     &lt;li&gt;&lt;a href="#"&gt;About Us&lt;/a&gt;&lt;/li&gt;

     &lt;li&gt;&lt;a href="#"&gt;History&lt;/a&gt;&lt;/li&gt;

     &lt;/ul&gt;

     &lt;/li&gt;

     &lt;li&gt;&lt;a href="#" class="toggleLink"&gt;Products/Services&lt;/a&gt;

     &lt;ul class="hidden"&gt;

     &lt;li&gt;&lt;a href="#"&gt;Custom Web Design&lt;/a&gt;&lt;/li&gt;

     &lt;li&gt;&lt;a href="#"&gt;Content Management Solutions&lt;/a&gt;&lt;/li&gt;

     &lt;li&gt;&lt;a href="#"&gt;Website Optimization&lt;/a&gt;&lt;/li&gt;

     &lt;li&gt;&lt;a href="#"&gt;Email Campaigns&lt;/a&gt;&lt;/li&gt;

     &lt;/ul&gt;

     &lt;/li&gt;

     &lt;li&gt;&lt;a href="#" class="toggleLink"&gt;Portfolio&lt;/a&gt;

     &lt;ul class="hidden"&gt;

     &lt;li&gt;&lt;a href="#"&gt;Static HTML&lt;/a&gt;&lt;/li&gt;

     &lt;li&gt;&lt;a href="#"&gt;Wordpress Themes&lt;/a&gt;&lt;/li&gt;

     &lt;li&gt;&lt;a href="#"&gt;Emails&lt;/a&gt;&lt;/li&gt;

     &lt;/ul&gt;

     &lt;/li&gt;

     &lt;li&gt;&lt;a href="#" class="toggleLink"&gt;Contact&lt;/a&gt;

     &lt;ul class="hidden"&gt;

     &lt;li&gt;&lt;a href="#"&gt;Phone&lt;/a&gt;&lt;/li&gt;

     &lt;li&gt;&lt;a href="#"&gt;Email&lt;/a&gt;&lt;/li&gt;

     &lt;li&gt;&lt;a href="#"&gt;Request a Quote&lt;/a&gt;&lt;/li&gt;

     &lt;/ul&gt;

     &lt;/li&gt;

&lt;/ul&gt;</pre>
<p>4. Add these classes to your stylesheet:</p>
<pre>a {
	text-decoration: none;
}
a.toggleLink {
	display: block;
	padding: 5px;
	background: #936;
	color: white;
	border-bottom:1px dotted #CC99CC;
	}
ul#accordian_menu {
	margin: 0;
	padding: 0;
	width: 150px;
}
ul#accordian_menu li {
	list-style-type: none;
}
ul#accordian_menu li ul {
	padding-left: 0;
	background: #FFDAEE;
}
ul#accordian_menu li ul li {
}
ul#accordian_menu li ul li a:hover {
	background: white;
}
ul#accordian_menu li ul li a {
	color: #936;
	display: block;
	border-bottom: 1px dotted #C9C;
	padding: 5px;
}</pre>
<p>These classes could probably be refined a little, but I kept them pretty specific so they won&#8217;t conflict with any similar markup that might be in your page. Feel free to rename or change them to suit your needs.</p>
<p>Take it further:</p>
<p>Use divs or paragraphs instead of list items to make a show/hide section of content.</p>
<p>Note: If you&#8217;re new to jQuery, you only need to include the $(document).ready(function()) once in your javascript document&#8211;wrap it around all of your functions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.moonkatcreations.com/2009/super-easy-jquery-accordion-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding jQuery to Wordpress</title>
		<link>http://www.moonkatcreations.com/2009/adding-jquery-to-wordpress/</link>
		<comments>http://www.moonkatcreations.com/2009/adding-jquery-to-wordpress/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 00:11:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.moonkatcreations.com/?p=217</guid>
		<description><![CDATA[You could add your custom jQuery to Wordpress by using the script tag in your head template, but this method can cause conflicts with JavaScript in other Wordpress plugins.

Instead, use the wp_enqueue_script, the Wordpress-friendly method. You will need direct access to your Wordpress files.]]></description>
			<content:encoded><![CDATA[<p>You <em>could</em> add your custom jQuery to Wordpress by using the script tag in your head template, but this method can cause conflicts with JavaScript in other Wordpress plugins.</p>
<p>Instead, use the wp_enqueue_script, the Wordpress-friendly method. You will need direct access to your Wordpress files.</p>
<ol>
<li>Go into wp-content/plugins, and create a new javascript folder.</li>
<li>In this folder, place your .js file.</li>
<li>In header.php, before &lt;?php wp_head(); ?&gt;, place this:</li>
</ol>
<pre>&lt;?php
wp_enqueue_script('custom',
'/' . PLUGINDIR . '/javascript/yourscript.js',
array('jquery'),
'1.0' );
?&gt;</pre>
<p>That&#8217;s it. You don&#8217;t need to do anything additional to include the jQuery library, since it&#8217;s specified as in the array as a file that your script is dependent upon. In place of &#8216;jquery&#8217; you can use Scriptaculous, jQuery UI Tabs, or any number of libraries that are built into Wordpress.</p>
<p>Those libraries, as well as additional information about the wp_enqueue_script can be found at <a href="http://codex.wordpress.org/Function_Reference/wp_enqueue_script">codex.wordpress.org/Function_Reference/wp_enqueue_script</a>.</p>
<p>According to the codex, this script can&#8217;t be placed above &lt;?php wp_head(); ?&gt;, but I&#8217;ve found that on the contrary, it works ONLY when placed above it. This same page of the codex also says that &#8216;$&#8217; can be used instead of &#8216;jQuery&#8217; inside the document ready function, which is also currently not accurate.</p>
<p>In other words, where you would use &#8216;$&#8217; in your jQuery function, you MUST use &#8216;jQuery&#8217; for every instance, not just in the document ready function. Feel free to test this with your own script; I&#8217;m not sure why the Codex is wrong on these points.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.moonkatcreations.com/2009/adding-jquery-to-wordpress/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Prototype technology search site</title>
		<link>http://www.moonkatcreations.com/2009/prototype-technology-search-site/</link>
		<comments>http://www.moonkatcreations.com/2009/prototype-technology-search-site/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 17:17:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.moonkatcreations.com/?p=210</guid>
		<description><![CDATA[Description: Prototype technology search siteRole: Interface design and graphics, HTML, CSS, jQuery
]]></description>
			<content:encoded><![CDATA[<p><a class="portfolio" href="http://www.moonkatcreations.com/wp-content/uploads/2009/08/pt.jpg"><img src="http://www.moonkatcreations.com/wp-content/uploads/2009/08/pt_thumb.jpg" alt="pt_thumb" title="pt_thumb" width="150" height="128" class="alignleft size-full wp-image-163" /></a><span class="portfolio_description"><strong>Description:</strong> Prototype technology search site<strong><br />Role:</strong> Interface design and graphics, HTML, CSS, jQuery</p>
]]></content:encoded>
			<wfw:commentRss>http://www.moonkatcreations.com/2009/prototype-technology-search-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amber&#8217;s Place</title>
		<link>http://www.moonkatcreations.com/2009/ambers-place/</link>
		<comments>http://www.moonkatcreations.com/2009/ambers-place/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 17:13:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.moonkatcreations.com/?p=200</guid>
		<description><![CDATA[Description: Step-daughter&#8217;s website Role: Design, HTML, CSS, JavaScript Website: www.holliephillips.comoj.com
]]></description>
			<content:encoded><![CDATA[<p><a class="portfolio" href="http://www.moonkatcreations.com/wp-content/uploads/2009/08/ambers_place.jpg"><img src="http://www.moonkatcreations.com/wp-content/uploads/2009/08/ambers_place_thumb.jpg" alt="ambers_place_thumb" title="ambers_place_thumb" width="150" height="132" class="alignleft size-full wp-image-147" /></a><span class="portfolio_description"><strong>Description:</strong> Step-daughter&#8217;s website <strong><br />Role:</strong> Design, HTML, CSS, JavaScript <strong><br />Website:</strong> <a title="Link to Amber's Place website" href="http://www.holliephillips.comoj.com/dreamweaver2/ambersplace/" target="_blank">www.holliephillips.comoj.com</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.moonkatcreations.com/2009/ambers-place/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XBOX Warranty Site</title>
		<link>http://www.moonkatcreations.com/2009/xbox-warranty-site/</link>
		<comments>http://www.moonkatcreations.com/2009/xbox-warranty-site/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 17:12:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.moonkatcreations.com/?p=204</guid>
		<description><![CDATA[Description: Public-facing corporate website for tracking work orders Role: Design and layout, HTML, CSS, jQuery
]]></description>
			<content:encoded><![CDATA[<p><a class="portfolio" href="http://www.moonkatcreations.com/wp-content/uploads/2009/08/warranty.jpg"><img src="http://www.moonkatcreations.com/wp-content/uploads/2009/08/warranty_thumb.png" alt="warranty_thumb" title="warranty_thumb" width="150" height="115" class="alignleft size-full wp-image-165" /></a><span class="portfolio_description"><strong>Description:</strong> Public-facing corporate website for tracking work orders <strong><br />Role:</strong> Design and layout, HTML, CSS, jQuery</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.moonkatcreations.com/2009/xbox-warranty-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress Theme</title>
		<link>http://www.moonkatcreations.com/2009/wordpress-theme/</link>
		<comments>http://www.moonkatcreations.com/2009/wordpress-theme/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 22:16:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.moonkatcreations.com/?p=193</guid>
		<description><![CDATA[Description: Wordpress theme for internal technology blogRole: Design, HTML, CSS, Wordpress
]]></description>
			<content:encoded><![CDATA[<p><a class="portfolio" href="http://www.moonkatcreations.com/wp-content/uploads/2009/08/tbd.jpg" alt="automator_large"><img src="http://www.moonkatcreations.com/wp-content/uploads/2009/08/tbd_thumb.jpg" alt="tbd_thumb" title="tbd_thumb" width="150" height="170" class="alignleft size-full wp-image-196" /></a><span class="portfolio_description"><strong>Description:</strong> Wordpress theme for internal technology blog<strong><br />Role:</strong> Design, HTML, CSS, Wordpress</p>
]]></content:encoded>
			<wfw:commentRss>http://www.moonkatcreations.com/2009/wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
