<?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>Jeremy Boyd &#187; JQuery</title>
	<atom:link href="http://jeremy.infinicastonline.com/category/work/javascript/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://jeremy.infinicastonline.com</link>
	<description>Web Developer</description>
	<lastBuildDate>Sun, 15 Aug 2010 02:21:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Handgloves v1.1</title>
		<link>http://jeremy.infinicastonline.com/2010/01/handgloves-v1-1/</link>
		<comments>http://jeremy.infinicastonline.com/2010/01/handgloves-v1-1/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 13:20:11 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[handgloves]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[wordpress themes]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://jeremy.infinicastonline.com/?p=107</guid>
		<description><![CDATA[Hey everyone, I have some good news.  I have been working with George Wiscombe to get a new version of Handgloves released.  3 months behind schedule, he was more than happy to receive my help. We merged the changes from my earlier post, and added a few others. New in Version 1.1 Admin menu to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jeremy.infinicastonline.com/wp-content/uploads/2010/01/screenshot5.png"><img class="alignleft size-full wp-image-108" title="screenshot" src="http://jeremy.infinicastonline.com/wp-content/uploads/2010/01/screenshot5.png" alt="" width="300" height="225" /></a> Hey everyone, I have some good news.  I have been working with <a href="http://georgewiscombe.com">George Wiscombe</a> to get a new version of Handgloves released.  3 months behind schedule, he was more than happy to receive my help.</p>
<p>We merged the changes from my <a href="http://jeremy.infinicastonline.com/2010/01/handgloves2-handgloves-with-theme-options/">earlier post</a>, and added a few others.</p>
<h3>New in Version 1.1</h3>
<ul>
<li>Admin menu to change elements! (developed by Jeremy Boyd)</li>
<li><a href="http://desandro.com/resources/jquery-masonry">jQuery Masonry</a> Comments (developed by Jeremy Boyd)</li>
<li>Smarter truncation of text in sidebar</li>
<li>Style for WordPress links (Blogroll)</li>
</ul>
<h3>Coming in Version 1.2</h3>
<ul>
<li>Alternative colour schemes</li>
<li>Navigation for sub-pages</li>
<li>New design features</li>
<li>Improved CSS</li>
</ul>
<p>If you have any issues, just post a comment here or at <a href="http://handgloves.geenius.co.uk/">Handglove&#8217;s Preview Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://jeremy.infinicastonline.com/2010/01/handgloves-v1-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JQuery Validator</title>
		<link>http://jeremy.infinicastonline.com/2010/01/jquery-validator/</link>
		<comments>http://jeremy.infinicastonline.com/2010/01/jquery-validator/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 18:05:46 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://jeremy.infinicastonline.com/?p=33</guid>
		<description><![CDATA[Validating a form is always my least favorite thing to do.  Call me simple, but I&#8217;d much rather eat grass than validate user input.  BUT it is inevitable. That is why I spent a day writing a form validation script that you can just drop in, make a couple changes to your form and have a beautiful client [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jeremy.infinicastonline.com/wp-content/uploads/2010/01/jabValidator.png"><img class="size-full wp-image-34 alignleft" title="JQuery Validator" src="http://jeremy.infinicastonline.com/wp-content/uploads/2010/01/jabValidator.png" alt="JQuery Validator" width="260" height="169" /></a></p>
<p>Validating a form is always my least favorite thing to do.  Call me simple, but I&#8217;d much rather eat grass than validate user input.  BUT it is inevitable.</p>
<p>That is why I spent a day writing a form validation script that you can just drop in, make a couple changes to your form and have a beautiful client side validation script.</p>
<p><em>Note: This is client side validation, not server side.  YOU STILL NEED TO VALIDATE ALL INPUT ON THE SERVER!</em></p>
<p><strong>Validation Types</strong></p>
<ul>
<li>Required Field</li>
<li>Date</li>
<li>Email</li>
<li>Numeric</li>
<li>Conditional</li>
</ul>
<p><strong>Sample Usage</strong></p>
<pre><strong>&lt;form id="form1" action="/sample.php" onsubmit="jabValidateForm('sample_form')"&gt;</strong></pre>
<pre><strong>    &lt;label id="lblEmail" for="txtEmail"&gt;Email Address&lt;/label&gt;</strong></pre>
<pre><strong>    &lt;input id="txtEmail" type="text" validate="true" vgroup="sample_form" validationType="required email" </strong></pre>
<pre><strong>        errElem="lblEmail" friendlyName="Email Address" /&gt;</strong></pre>
<pre><strong>    &lt;input id="btnSubmit" type="submit" value="Submit" /&gt;</strong></pre>
<pre><strong>&lt;/form&gt;</strong></pre>
<p>When this form is submitted by clicking on <em>&#8220;btnSubmit&#8221;</em>, <em>jabValidateForm()</em> will loop through the elements that have the attribute &#8220;validate&#8221; set to &#8220;true&#8221;.  The script first checks to see if the control is required, the will evaluate it against the email validation regular expression.</p>
<p><strong>Requirements</strong></p>
<p>I have not tested this script in any version of JQuery other than version 1.2.9. <strong>So as of right now, version 1.2.9 is required</strong>.</p>
<p>Another must have is <a title="ThickBox" href="http://jquery.com/demo/thickbox/" target="_blank">ThickBox</a>.  I know it isn&#8217;t supported any longer, and there are better light boxes, but this one was my favorite at the time I coded this.</p>
<p><strong>Who is Using It</strong></p>
<p>A few notable websites are using this script, and from my email, I believe a few more will be soon.</p>
<ul>
<li>Related Companies (<a href="http://www.related.com">www.related.com</a>)
<ul>
<li>The version Related Companies uses is a version I had to modify to fit their light box needs.</li>
</ul>
</li>
<li>Crimeweb (<a href="http://www.crimeweb.net">www.crimeweb.net</a>)
<ul>
<li>Not used on their main site, but one of their products ships with a modified version of the Validator.</li>
</ul>
</li>
</ul>
<p><strong>Download JQuery Validator</strong></p>
<p>This script is provided free of charge, and without warranty.  All I ask in return of you using this script is to let your friends and family know, and keep software the way it should be free!</p>
<p><a href="http://jeremy.infinicastonline.com/wp-content/uploads/2010/01/validation.js">JQuery Validator</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jeremy.infinicastonline.com/2010/01/jquery-validator/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Selectzor</title>
		<link>http://jeremy.infinicastonline.com/2010/01/selectzor/</link>
		<comments>http://jeremy.infinicastonline.com/2010/01/selectzor/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 05:47:51 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[Select Box]]></category>
		<category><![CDATA[Selectzor]]></category>

		<guid isPermaLink="false">http://jeremy.infinicastonline.com/?p=24</guid>
		<description><![CDATA[Selectzor is a stylized select box that with only two changes to your page, you can have infinite stylizing possibilities! The code is referenced in the header through a script include &#8220;&#60;script src="scripts/selectzor.js" type="text/javascript"&#62;&#60;/script&#62;&#8221; You must then make a reference to the css file, or place the css in your page &#8220;&#60;link href="styles/selectzor.css" type="text/css" rel="stylesheet" [...]]]></description>
			<content:encoded><![CDATA[<p>Selectzor is a stylized select box that with only two changes to your page, you can have infinite stylizing possibilities! The code is referenced in the header through a script include &#8220;<code lang="en">&lt;script src="scripts/selectzor.js" type="text/javascript"&gt;&lt;/script&gt;</code>&#8221;</p>
<p>You must then make a reference to the css file, or place the css in your page &#8220;<code>&lt;link href="styles/selectzor.css" type="text/css" rel="stylesheet" /&gt;</code>&#8221;</p>
<p><em>Note: Selectzor requires JQuery 1.2+</em></p>
<p><strong>Initial Release</strong></p>
<p>Selectzor &#8211; The Stylized Select Box 1.0.1</p>
<p>To download click the link below.</p>
<p><a href="http://jeremy.infinicastonline.com/wp-content/uploads/2010/01/selectzor.zip">Selectzor &#8211; Download Now!</a></p>
<p><strong>Future Plans</strong></p>
<ul>
<li>Plugin-ify it.  Currently it just replaces everything that has the class of &#8220;selectzor&#8221;.</li>
<li>Work on ie6 compatibility.</li>
<li>Check compatibility with newer JQuery libraries.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://jeremy.infinicastonline.com/2010/01/selectzor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
