<?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>Blogfreakz - Web Design and Web Development resources &#187; Forms</title>
	<atom:link href="http://blogfreakz.com/category/form/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogfreakz.com</link>
	<description>A site dedicated to keeping up with the latest trends on Web Design</description>
	<lastBuildDate>Thu, 17 May 2012 00:27:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>Gravity Registration Form With jQuery</title>
		<link>http://blogfreakz.com/tutorial/gravity-registration-form-with-jquery/</link>
		<comments>http://blogfreakz.com/tutorial/gravity-registration-form-with-jquery/#comments</comments>
		<pubDate>Wed, 28 Mar 2012 01:53:32 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Forms]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[free]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=26477</guid>
		<description><![CDATA[Jazz up your online form by adding eye-catching effects to it with  this jQuery tutorial! This jQuery code is known as the “Gravity Registration Form” because it shows the next hidden field for the user to fill up by making it drop down below the preceding one. Click on the image above for the demo. [...]]]></description>
			<content:encoded><![CDATA[<p>Jazz up your online form by adding eye-catching effects to it with  this jQuery tutorial!</p>
<p><a href="http://demos.9lessons.info/slidereg/demo.html" target="_blank"><img class="aligncenter size-full wp-image-26478" title="Gravity Registration" src="http://blogfreakz.com/wp-content/uploads/2012/03/Gravity-Registration.jpg" alt="Gravity Registration Gravity Registration Form With jQuery" width="497" height="194" /></a></p>
<p>This jQuery code is known as the “Gravity Registration Form” because it shows the next hidden field for the user to fill up by making it drop down below the preceding one. <strong>Click on the image above for the demo.</strong></p>
<p>Here’s the <strong>JavaScript code</strong>:</p>
<p>Contains javascipt code.<strong> <em>$(&#8220;#email&#8221;).keyup(function(){}</em></strong><em>-</em> email is the ID name of input field. Using <strong><em>$(this).attr(&#8220;id&#8221;)</em></strong> calling input field value. Fields validating using regular expressions.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">&lt;script type="text/javascript" src="http://ajax.googleapis.com/</span></pre>
<pre><span style="color: #003366;">ajax/libs/jquery/1.4.2/jquery.min.js"&gt;&lt;/script&gt;</span></pre>
<pre><span style="color: #003366;">&lt;script type="text/javascript"   src="jquery.easing.1.3.js.js"&gt;&lt;/script&gt;</span></pre>
<pre><span style="color: #003366;">&lt;script type="text/javascript"&gt;</span></pre>
<pre><span style="color: #003366;">$(function()</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">// Displaying first list email field</span></pre>
<pre><span style="color: #003366;">$("ul li:first").show();</span></pre>
<pre><span style="color: #003366;">// Regular Expressions</span></pre>
<pre><span style="color: #003366;">var ck_username = /^[A-Za-z0-9_]{3,20}$/;</span></pre>
<pre><span style="color: #003366;">var ck_email =   /^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i;</span></pre>
<pre><span style="color: #003366;">var ck_password = /^[A-Za-z0-9!@#$%^&amp;*()_]{6,20}$/;</span></pre>
<pre><span style="color: #003366;">// Email validation</span></pre>
<pre><span style="color: #003366;">$('#email').keyup(function()</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">var email=$(this).val();</span></pre>
<pre><span style="color: #003366;">if (!ck_email.test(email))</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">$(this).next().show().html("Enter valid email");</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">else</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">$(this).next().hide();</span></pre>
<pre><span style="color: #003366;">$("li").next("li.username").slideDown({duration:   'slow',easing: 'easeOutElastic'});</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">});</span></pre>
<pre><span style="color: #003366;">// Username validation</span></pre>
<pre><span style="color: #003366;">$('#username').keyup(function()</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">var username=$(this).val();</span></pre>
<pre><span style="color: #003366;">if (!ck_username.test(username))</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">$(this).next().show().html("Min 3 charts no space");</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">else</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">$(this).next().hide();</span></pre>
<pre><span style="color: #003366;">$("li").next("li.password").slideDown({duration:   'slow',easing: 'easeOutElastic'});</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">});</span></pre>
<pre><span style="color: #003366;">// Password validation</span></pre>
<pre><span style="color: #003366;">$('#password').keyup(function()</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">var password=$(this).val();</span></pre>
<pre><span style="color: #003366;">if (!ck_password.test(password))</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">$(this).next().show().html("Min 6 Charts");</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">else</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">$(this).next().hide();</span></pre>
<pre><span style="color: #003366;">$("li").next("li.submit").slideDown({duration:   'slow',easing: 'easeOutElastic'});</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">});</span></pre>
<pre><span style="color: #003366;">// Submit button action</span></pre>
<pre><span style="color: #003366;">$('#submit').click(function()</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">var email=$("#email").val();</span></pre>
<pre><span style="color: #003366;">var username=$("#username").val();</span></pre>
<pre><span style="color: #003366;">var password=$("#password").val();</span></pre>
<pre><span style="color: #003366;">if(ck_email.test(email) &amp;&amp; ck_username.test(username)   &amp;&amp; ck_password.test(password) )</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">$("#form").show().html("&lt;h1&gt;Thank   you!&lt;/h1&gt;");</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">return false;</span></pre>
<pre><span style="color: #003366;">});</span></pre>
<pre><span style="color: #003366;">})</span></pre>
<pre><span style="color: #003366;">&lt;/script&gt;</span></pre>
</td>
</tr>
</tbody>
</table>
<p>Now here’s the simple <strong>HTML code</strong>:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">&lt;form method="post" &gt;</span></pre>
<pre><span style="color: #003366;">&lt;ul&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;label&gt;Email: &lt;/label&gt;&lt;br/&gt;</span></pre>
<pre><span style="color: #003366;">&lt;input type="text" name="email"   id="email" /&gt;</span></pre>
<pre><span style="color: #003366;">&lt;span&gt;&lt;/span&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;label&gt;Username: &lt;/label&gt;&lt;br/&gt;</span></pre>
<pre><span style="color: #003366;">&lt;input type="text" name="username"   id="username" /&gt;</span></pre>
<pre><span style="color: #003366;">&lt;span&gt;&lt;/span&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;label&gt;Password: &lt;/label&gt;&lt;br/&gt;</span></pre>
<pre><span style="color: #003366;">&lt;input type="password" name="password"   id="password" /&gt;</span></pre>
<pre><span style="color: #003366;">&lt;span&gt;&lt;/span&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;input type="submit" value=" Register "   id='submit'/&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/ul&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/form&gt;</span></pre>
</td>
</tr>
</tbody>
</table>
<p>In case you want to put in an additional field, just follow the 2 short steps below:</p>
<p>For example, you want to add “City” in the list of fields you insert this in the <strong>HTML code</strong>:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">&lt;li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;label&gt;City: &lt;/label&gt;&lt;br/&gt;</span></pre>
<pre><span style="color: #003366;">&lt;input type="text" name="city"   id="city" /&gt;</span></pre>
<pre><span style="color: #003366;">&lt;span&gt;&lt;/span&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/li&gt;</span></pre>
</td>
</tr>
</tbody>
</table>
<p>And then go to the <strong>JavaScript</strong> and replace this:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre>$("li").next("li.submit") to   $("li").next("li.city")</pre>
</td>
</tr>
</tbody>
</table>
<p>With this:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">// Regular Expression</span></pre>
<pre><span style="color: #003366;">var ck_city = /^[A-Za-z0-9 -]{3,20}$/;</span></pre>
<pre><span style="color: #003366;">// City validation</span></pre>
<pre><span style="color: #003366;">$('#city').keyup(function()</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">var email=$(this).val();</span></pre>
<pre><span style="color: #003366;">if (!ck_city.test(email))</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">$(this).next().show().html("Enter valid city");</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">else</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">$(this).next().hide();</span></pre>
<pre><span style="color: #003366;">$("li").next("li.submit").slideDown({duration:   'slow',easing: 'easeOutElastic'});</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">});</span></pre>
</td>
</tr>
</tbody>
</table>
<p>And now for the final <strong>CSS code</strong>, where <strong><em>li {display:none}</em></strong> while page loading jquery displaying first list <strong><em>li:first</em></strong> email field.:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">ul</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">padding:0px;</span></pre>
<pre><span style="color: #003366;">margin:0px;</span></pre>
<pre><span style="color: #003366;">list-style:none;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">li</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">padding:5px;</span></pre>
<pre><span style="color: #003366;">display:none;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">label</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">font-size:14px;</span></pre>
<pre><span style="color: #003366;">font-weight:bold;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">input[type="text"], input[type="password"]</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">border:solid 2px #009900;</span></pre>
<pre><span style="color: #003366;">font-size:14px;</span></pre>
<pre><span style="color: #003366;">padding:4px;</span></pre>
<pre><span style="color: #003366;">width:180px;</span></pre>
<pre><span style="color: #003366;">-moz-border-radius:6px;-webkit-border-radius:6px;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">input[type="submit"]</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">border:solid 1px #ff6600;</span></pre>
<pre><span style="color: #003366;">background-color:#FF6600;</span></pre>
<pre><span style="color: #003366;">color:#fff;</span></pre>
<pre><span style="color: #003366;">font-size:14px;</span></pre>
<pre><span style="color: #003366;">padding:4px;</span></pre>
<pre><span style="color: #003366;">-moz-border-radius:6px;-webkit-border-radius:6px;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.error</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">font-size:11px;</span></pre>
<pre><span style="color: #003366;">color:#cc0000;</span></pre>
<pre><span style="color: #003366;">padding:4px;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#form</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">width:350px;</span></pre>
<pre><span style="color: #003366;">margin:0 auto;</span></pre>
<pre><span style="color: #003366;">margin-top:30px;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
</td>
</tr>
</tbody>
</table>
<p>Download the full script <a href="http://www.box.com/shared/k616m23bu5"><strong>here</strong></a><strong> </strong>(.zip, 30.3KB).<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/tutorial/gravity-registration-form-with-jquery/" title="jquery email">jquery email</a></li>
<li><a href="http://blogfreakz.com/tutorial/gravity-registration-form-with-jquery/" title="jquery registration form">jquery registration form</a></li>
<li><a href="http://blogfreakz.com/tutorial/gravity-registration-form-with-jquery/" title="registration form in jquery">registration form in jquery</a></li>
<li><a href="http://blogfreakz.com/tutorial/gravity-registration-form-with-jquery/" title="var email=$(this) val(); if (!ck_email test(email)) {">var email=$(this) val(); if (!ck_email test(email)) {</a></li>
<li><a href="http://blogfreakz.com/tutorial/gravity-registration-form-with-jquery/" title="gravity j query">gravity j query</a></li>
<li><a href="http://blogfreakz.com/tutorial/gravity-registration-form-with-jquery/" title="Html script for gravity registration using jquery">Html script for gravity registration using jquery</a></li>
<li><a href="http://blogfreakz.com/tutorial/gravity-registration-form-with-jquery/" title="jquery form registration">jquery form registration</a></li>
<li><a href="http://blogfreakz.com/tutorial/gravity-registration-form-with-jquery/" title="registration form with jquery">registration form with jquery</a></li>
<li><a href="http://blogfreakz.com/tutorial/gravity-registration-form-with-jquery/" title="jquery registration">jquery registration</a></li>
<li><a href="http://blogfreakz.com/tutorial/gravity-registration-form-with-jquery/" title="jquery register form">jquery register form</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/tutorial/gravity-registration-form-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a Unique CSS3 Transition Contact Form</title>
		<link>http://blogfreakz.com/web-design/create-a-unique-css3-transition-contact-form/</link>
		<comments>http://blogfreakz.com/web-design/create-a-unique-css3-transition-contact-form/#comments</comments>
		<pubDate>Wed, 21 Mar 2012 02:26:59 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Forms]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[contact forms]]></category>
		<category><![CDATA[free]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=26340</guid>
		<description><![CDATA[Hit the envelope to view the demo! Here’s a nice and unique contact form with CSS3 transitions that visitors will love using in your website. Created by Pehaa, it features a letter sliding out from an envelope once you hover your mouse over it. Note: This works in browsers that support CSS3 transitions. The envelope [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://pehaa.com/wp-content/uploads/2011/07/contactform/contactform.html"><img class="aligncenter size-full wp-image-26341" title="Contact Form" src="http://blogfreakz.com/wp-content/uploads/2012/03/Contact-Form.jpg" alt="Contact Form Create a Unique CSS3 Transition Contact Form" width="383" height="363" /></a><strong>Hit the envelope to view the demo!</strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p>Here’s a nice and unique contact form with CSS3 transitions that visitors will love using in your website. Created by <a href="http://pehaa.com/" target="_blank">Pehaa</a>, it features a letter sliding out from an envelope once you hover your mouse over it.</p>
<p>Note: This works in browsers that support CSS3 transitions. The envelope is not visible if you use IE.</p>
<p>Get the <a href="http://pehaa.com/2011/07/create-a-unique-contact-form-with-css3-transitions/" target="_blank"><strong>TUTORIAL</strong></a> and <a href="http://pehaa.com/wp-content/uploads/2011/07/contactform.zip" target="_blank"><strong>ZIP FILE</strong></a> now!</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/create-a-unique-css3-transition-contact-form/" title="css3 transition template">css3 transition template</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-unique-css3-transition-contact-form/" title="css3 transition">css3 transition</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-unique-css3-transition-contact-form/" title="contact form css transition">contact form css transition</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-unique-css3-transition-contact-form/" title="create a unique contact form with css3 transitions">create a unique contact form with css3 transitions</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-unique-css3-transition-contact-form/" title="innovative css3 transform websites">innovative css3 transform websites</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-unique-css3-transition-contact-form/" title="form transition css3">form transition css3</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-unique-css3-transition-contact-form/" title="css3 transition contact form">css3 transition contact form</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-unique-css3-transition-contact-form/" title="css3 form transitions">css3 form transitions</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-unique-css3-transition-contact-form/" title="css3 form transition">css3 form transition</a></li>
<li><a href="http://blogfreakz.com/web-design/create-a-unique-css3-transition-contact-form/" title="css3 contact form 2012">css3 contact form 2012</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/create-a-unique-css3-transition-contact-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Password Strength Verification with jQuery</title>
		<link>http://blogfreakz.com/tutorial/password-strength-verification-with-jquery/</link>
		<comments>http://blogfreakz.com/tutorial/password-strength-verification-with-jquery/#comments</comments>
		<pubDate>Thu, 01 Mar 2012 03:10:22 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Forms]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[password security]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=25668</guid>
		<description><![CDATA[When creating a site with user accounts, you will need enough security to ensure that user passwords are strong and can’t be hacked easily. Factors like length, adding alphanumeric characters, unpredictability and complexity should be considered well. Jim Nielsen shares a jQuery and CSS3 tutorial on making a form that will give users live feedback [...]]]></description>
			<content:encoded><![CDATA[<p>When creating a site with user accounts, you will need enough security  to ensure that user passwords are strong and can’t be hacked easily.  Factors like length, adding alphanumeric characters, unpredictability  and complexity should be considered well.</p>
<p><a href="http://www.webdesignerdepot.com/2012/01/password-strength-verification-with-jquery/" target="_blank"><img class="aligncenter size-full wp-image-25669" title="PW" src="http://blogfreakz.com/wp-content/uploads/2012/03/PW.jpg" alt="PW Password Strength Verification with jQuery" width="443" height="348" /></a></p>
<p><a href="http://www.jim-nielsen.com/" target="_blank"><strong>Jim Nielsen</strong></a> <a href="http://www.jim-nielsen.com/"></a>shares a jQuery and CSS3 tutorial on making a form that will give users live feedback if the password they enter meet the necessary complexity requirements. Click on the image above to launch the tutorial now!</p>
<p><strong> </strong></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/tutorial/password-strength-verification-with-jquery/" title="jquery password strength">jquery password strength</a></li>
<li><a href="http://blogfreakz.com/tutorial/password-strength-verification-with-jquery/" title="jquery password">jquery password</a></li>
<li><a href="http://blogfreakz.com/tutorial/password-strength-verification-with-jquery/" title="password strength jquery">password strength jquery</a></li>
<li><a href="http://blogfreakz.com/tutorial/password-strength-verification-with-jquery/" title="design password verification window in jquery">design password verification window in jquery</a></li>
<li><a href="http://blogfreakz.com/tutorial/password-strength-verification-with-jquery/" title="password strength verification with jquery">password strength verification with jquery</a></li>
<li><a href="http://blogfreakz.com/tutorial/password-strength-verification-with-jquery/" title="password strength verification in jquery">password strength verification in jquery</a></li>
<li><a href="http://blogfreakz.com/tutorial/password-strength-verification-with-jquery/" title="password strength picker">password strength picker</a></li>
<li><a href="http://blogfreakz.com/tutorial/password-strength-verification-with-jquery/" title="password strength cakephp">password strength cakephp</a></li>
<li><a href="http://blogfreakz.com/tutorial/password-strength-verification-with-jquery/" title="jquery ps strength">jquery ps strength</a></li>
<li><a href="http://blogfreakz.com/tutorial/password-strength-verification-with-jquery/" title="jquery password verification strenght">jquery password verification strenght</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/tutorial/password-strength-verification-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Filter Data with jQuery</title>
		<link>http://blogfreakz.com/tutorial/filter-data-with-jquery/</link>
		<comments>http://blogfreakz.com/tutorial/filter-data-with-jquery/#comments</comments>
		<pubDate>Mon, 27 Feb 2012 04:45:32 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Forms]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=25558</guid>
		<description><![CDATA[Ever noticed how shopping sites can filter out certain items according to the visitor&#8217;s preferences? Here’s a quick and very helpful tutorial that will teach you how to do something similar to that without any need for database calls or page refreshes. Let’s begin with the CSS structure to make the layout presentable. /* SIMPLE [...]]]></description>
			<content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;"> </span></strong>Ever noticed how shopping sites can filter out certain items according to the visitor&#8217;s preferences? Here’s a quick and very helpful tutorial that will teach you how to do something similar to that without any need for database calls or page refreshes.</p>
<p>Let’s begin with the <strong>CSS</strong> structure to make the layout presentable.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">/* SIMPLE CSS RESET */</span></pre>
<pre><span style="color: #003366;">html, body, div, span,   applet, object, iframe,</span></pre>
<pre><span style="color: #003366;">h1, h2, h3, h4, h5, h6, p,   blockquote, pre,</span></pre>
<pre><span style="color: #003366;">a, abbr, acronym, address,   big, cite, code,</span></pre>
<pre><span style="color: #003366;">del, dfn, em, font, img, ins,   kbd, q, s, samp,</span></pre>
<pre><span style="color: #003366;">small, strike, strong, sub,   sup, tt, var,</span></pre>
<pre><span style="color: #003366;">b, u, i, center,</span></pre>
<pre><span style="color: #003366;">dl, dt, dd, ol, ul, li,</span></pre>
<pre><span style="color: #003366;">fieldset, form, label,   legend,</span></pre>
<pre><span style="color: #003366;">table, caption, tbody, tfoot,   thead, tr, th, td {</span></pre>
<pre><span style="color: #003366;">margin: 0;</span></pre>
<pre><span style="color: #003366;">padding: 0;</span></pre>
<pre><span style="color: #003366;">border: 0;</span></pre>
<pre><span style="color: #003366;">outline: 0;</span></pre>
<pre><span style="color: #003366;">font-size: 100%;</span></pre>
<pre><span style="color: #003366;">vertical-align: baseline;</span></pre>
<pre><span style="color: #003366;">background: transparent;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">body { line-height: 1; }</span></pre>
<pre><span style="color: #003366;">ol, ul { list-style: none; }</span></pre>
<pre><span style="color: #003366;">blockquote, q { quotes: none;   }</span></pre>
<pre><span style="color: #003366;">blockquote:before,   blockquote:after,</span></pre>
<pre><span style="color: #003366;">q:before, q:after { content:   ''; content: none; }</span></pre>
<pre><span style="color: #003366;">/* remember to define focus   styles! */</span></pre>
<pre><span style="color: #003366;">:focus { outline: 0; }</span></pre>
<pre><span style="color: #003366;">/* remember to highlight   inserts somehow! */</span></pre>
<pre><span style="color: #003366;">ins { text-decoration: none;   }</span></pre>
<pre><span style="color: #003366;">del { text-decoration: line-through;   }</span></pre>
<pre><span style="color: #003366;">/* tables still need   'cellspacing="0"' in the markup */</span></pre>
<pre><span style="color: #003366;">table { border-collapse:   collapse; border-spacing: 0; }</span></pre>
<pre><span style="color: #003366;">/*- -*/</span></pre>
<pre><span style="color: #003366;">/*- FILTER OPTIONS -*/</span></pre>
<pre><span style="color: #003366;">ul#filterOptions {</span></pre>
<pre><span style="color: #003366;">width: 802px;</span></pre>
<pre><span style="color: #003366;">height: 52px;</span></pre>
<pre><span style="color: #003366;">margin: 30px 0;</span></pre>
<pre><span style="color: #003366;">overflow: hidden;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">ul#filterOptions li { height:   52px; margin-right: 2px; float: left; }</span></pre>
<pre><span style="color: #003366;">ul#filterOptions li a {</span></pre>
<pre><span style="color: #003366;">height: 50px;</span></pre>
<pre><span style="color: #003366;">padding: 0 20px;</span></pre>
<pre><span style="color: #003366;">border: 1px solid #999;</span></pre>
<pre><span style="color: #003366;">background: #cfcfcf;</span></pre>
<pre><span style="color: #003366;">color: #fff;</span></pre>
<pre><span style="color: #003366;">font-weight: bold;</span></pre>
<pre><span style="color: #003366;">line-height: 50px;</span></pre>
<pre><span style="color: #003366;">text-decoration: none;</span></pre>
<pre><span style="color: #003366;">display: block;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">ul#filterOptions li a:hover {   background: #c9c9c9; }</span></pre>
<pre><span style="color: #003366;">ul#filterOptions li.active a   { background: #999; }</span></pre>
<pre><span style="color: #003366;">/*- -*/</span></pre>
</td>
</tr>
</tbody>
</table>
<p>The CSS is divided into 2 parts. The first one uses the CSS reset snippet by <a href="http://meyerweb.com/eric/css/" target="_blank"><strong>Eric Meyer</strong></a> to iron out any potential browser inconsistencies, while the second (labeled “/*- FILTER OPTIONS -*/”) indicates the button styles.</p>
<p>Now for our <strong>HTML</strong>:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">&lt;ul   id="filterOptions"&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;&lt;a   href="#"&gt;All&lt;/a&gt;&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;&lt;a href="#"  &gt;Group 1&lt;/a&gt;&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;&lt;a href="#"  &gt;Group 2&lt;/a&gt;&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;&lt;a href="#"  &gt;Group 3&lt;/a&gt;&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;li&gt;&lt;a href="#"  &gt;Group 4&lt;/a&gt;&lt;/li&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/ul&gt;</span></pre>
</td>
</tr>
</tbody>
</table>
<p>A different class is assigned for the link elements because we’ll be using it later in jQuery to indicate the items to be filtered out.</p>
<p>Now we’re going to put a style on the target data (list of items to be filtered) with CSS below, followed by the updated HTML. In this example, we will assume our items to be image files. The h3 tag is basically for the corresponding names for the images. Both the image and the name are then surrounded by a fixed height and width div element to everything aligned.</p>
<p><strong>CSS</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">/*- OUR DATA HOLDER -*/</span></pre>
<pre><span style="color: #003366;">#ourHolder { width: 800px;   height: 850px; overflow: hidden; }</span></pre>
<pre><span style="color: #003366;">#ourHolder div.item {</span></pre>
<pre><span style="color: #003366;">width: 200px;</span></pre>
<pre><span style="color: #003366;">height: 200px;</span></pre>
<pre><span style="color: #003366;">float: left;</span></pre>
<pre><span style="color: #003366;">text-align: center;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#ourHolder div.item h3 {   margin-top: 10px; font-size: 16px; line-height: 20px; }</span></pre>
<pre><span style="color: #003366;">/*- -*/</span></pre>
</td>
</tr>
</tbody>
</table>
<p><strong>HTML</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">&lt;div   id="ourHolder"&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;img   src="images/accrington-stanley.jpg" alt="Accrington   Stanley" /&gt;</span></pre>
<pre><span style="color: #003366;">&lt;h3&gt;Accrington Stanley&lt;/h3&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;img src="images/picture01.jpg"   alt="Picture 1" /&gt;</span></pre>
<pre><span style="color: #003366;">&lt;h3&gt;Picture 1&lt;/h3&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;img src="images/picture002.jpg"   alt="Picture 2" /&gt;</span></pre>
<pre><span style="color: #003366;">&lt;h3&gt;Picture 2&lt;/h3&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">...            //insert any additional items   here</span></pre>
<pre><span style="color: #003366;">&lt;/div&gt;</span></pre>
</td>
</tr>
</tbody>
</table>
<p>Once you use this code, make sure you rename your jpeg files (picture002.jpg) accordingly.</p>
<p>We’ve also added another class (i.e. item group01) to our items which matches up to the classes assigned to our filter options links (class=&#8221;group01&#8243; under “filterOptions”). This will be our reference on which items will be shown once a filtered link is selected.</p>
<p>For the jQuery, we’ll be using a hosted copy of the jQuery that is linked to Google’s CDN. To do this, we’ll place the following snippet within our web page’s &lt;head&gt;&lt;/head&gt; tag.</p>
<p><strong>HTML</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">&lt;script   language="javascript" type="text/javascript"   src="https://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"&gt;&lt;/script&gt;</span></pre>
</td>
</tr>
</tbody>
</table>
<p>Next, we need to display the specific items with a few more jQuery. All the items are displayed by default.</p>
<p>Once the visitor clicks on a filter option link, jQuery will fetch the element class that is clicked on and assign it to the ourClass variable. After the ourClass variable is discovered we deactivate all the filter option elements and reassign the active class to the clicked filter option element (this will show the visitor what they&#8217;re filtering by).</p>
<p>We will also determine if the user has clicked the &#8216;all&#8217; filter option. If this is the case, then all the items under the same class are shown. Lastly, ‘return false’ should be indicated to prevent the page from automatically scrolling back to the top.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">$(document).ready(function()   {</span></pre>
<pre><span style="color: #003366;">$('#filterOptions li a').click(function() {</span></pre>
<pre><span style="color: #003366;">// fetch the class of the clicked item</span></pre>
<pre><span style="color: #003366;">var ourClass = $(this).attr('class');</span></pre>
<pre><span style="color: #003366;">// reset the active class on all the   buttons</span></pre>
<pre><span style="color: #003366;">$('#filterOptions li').removeClass('active');</span></pre>
<pre><span style="color: #003366;">// update the active state on our clicked   button</span></pre>
<pre><span style="color: #003366;">$(this).parent().addClass('active');</span></pre>
<pre><span style="color: #003366;">if(ourClass == 'all') {</span></pre>
<pre><span style="color: #003366;">// show all our items</span></pre>
<pre><span style="color: #003366;">$('#ourHolder').children('div.item').show();</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">else {</span></pre>
<pre><span style="color: #003366;">// hide all elements that don't share   ourClass</span></pre>
<pre><span style="color: #003366;">$('#ourHolder').children('div:not(.' +   ourClass + ')').hide();</span></pre>
<pre><span style="color: #003366;">// show all elements that do share   ourClass</span></pre>
<pre><span style="color: #003366;">$('#ourHolder').children('div.' +   ourClass).show();</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">return false;</span></pre>
<pre><span style="color: #003366;">});</span></pre>
<pre><span style="color: #003366;">});</span></pre>
</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>&nbsp;<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/tutorial/filter-data-with-jquery/" title="jquery filter data">jquery filter data</a></li>
<li><a href="http://blogfreakz.com/tutorial/filter-data-with-jquery/" title="filter jquery">filter jquery</a></li>
<li><a href="http://blogfreakz.com/tutorial/filter-data-with-jquery/" title="filter data in jquery">filter data in jquery</a></li>
<li><a href="http://blogfreakz.com/tutorial/filter-data-with-jquery/" title="jquery show this">jquery show this</a></li>
<li><a href="http://blogfreakz.com/tutorial/filter-data-with-jquery/" title="jquery filter resources">jquery filter resources</a></li>
<li><a href="http://blogfreakz.com/tutorial/filter-data-with-jquery/" title="jquery filter data from div">jquery filter data from div</a></li>
<li><a href="http://blogfreakz.com/tutorial/filter-data-with-jquery/" title="jquery filter by classes">jquery filter by classes</a></li>
<li><a href="http://blogfreakz.com/tutorial/filter-data-with-jquery/" title="jquery filter box using dd dl">jquery filter box using dd dl</a></li>
<li><a href="http://blogfreakz.com/tutorial/filter-data-with-jquery/" title="jquery data filter">jquery data filter</a></li>
<li><a href="http://blogfreakz.com/tutorial/filter-data-with-jquery/" title="how to filter data in jquery">how to filter data in jquery</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/tutorial/filter-data-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make Blinking Neon Forms with CSS3 and jQuery</title>
		<link>http://blogfreakz.com/tutorial/make-blinking-neon-forms-with-css3-and-jquery/</link>
		<comments>http://blogfreakz.com/tutorial/make-blinking-neon-forms-with-css3-and-jquery/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 13:12:25 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[API]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Forms]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[neon]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24484</guid>
		<description><![CDATA[This cool form effect has the usual attributes we enjoy &#8212; rounded corners, stroke edges and other CSS-generated qualities. But thanks to web developer Rakesh Menon, this one’s got another thing up its sleeve: it&#8217;s got a  glowing neon border that pulsates! Here’s the demo for you to really appreciate it. Click here for the [...]]]></description>
			<content:encoded><![CDATA[<p>This cool form effect has the usual attributes we enjoy &#8212; rounded corners, stroke edges and other CSS-generated qualities. But thanks to web developer <a href="http://www.1stwebdesigner.com/author/rakeshmenon/" target="_blank"><strong>Rakesh Menon</strong></a>, this one’s got another thing up its sleeve: it&#8217;s got a  glowing neon border that pulsates!</p>
<p><a href="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/neon-blink-effect-overall.jpg"><img class="aligncenter size-medium wp-image-24487" title="Neon Form" src="http://blogfreakz.com/wp-content/uploads/2012/01/114-285x175.jpg" alt="114 285x175 Make Blinking Neon Forms with CSS3 and jQuery" width="285" height="175" /></a></p>
<p>Here’s the <strong><a href="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/neonblink/source-code/index.html">demo</a></strong> for you to really appreciate it. <strong><a href="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/neonblink.zip">Click here</a></strong> for the source files (/zip).</p>
<p>Now let’s start the tutorial with the xHTML to setup the layout.</p>
<p><strong>xHTML</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><span style="color: #003366;">&lt;!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0   Transitional//EN&#8221;   &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&gt;</span>&nbsp;</p>
<p><span style="color: #003366;">&lt;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;  &gt;</span></p>
<p><span style="color: #003366;">&lt;head&gt;</span></p>
<p><span style="color: #003366;">&lt;meta content=&#8221;text/html; charset=utf-8&#8243;   http-equiv=&#8221;Content-Type&#8221; /&gt;</span></p>
<p><span style="color: #003366;">&lt;title&gt;Form Tutorial&lt;/title&gt;</span></p>
<p><span style="color: #003366;">&lt;link rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221;   href=&#8221;style.css&#8221;&gt;</span></p>
<p><span style="color: #003366;">&lt;script   type=&#8221;text/javascript&#8221;   src=&#8221;jquery-1.4.2.min.js&#8221;&gt;&lt;/script&gt;</span></p>
<p><span style="color: #003366;">&lt;script type=&#8221;text/javascript&#8221;   src=&#8221;highlight.js&#8221;&gt;&lt;/script&gt;</span></p>
<p><span style="color: #003366;">&lt;/head&gt;</span></p>
<p><span style="color: #003366;">&lt;body&gt;</span></p>
<p><span style="color: #003366;">&lt;div   id=&#8221;page-wrap&#8221;&gt;</span></p>
<p><span style="color: #003366;">&lt;form   id=&#8221;myform&#8221; method=&#8221;post&#8221; action=&#8221;#&#8221;&gt;</span></p>
<p><span style="color: #003366;">&lt;div&gt;</span></p>
<p><span style="color: #003366;">&lt;div  &gt;</span></p>
<p><span style="color: #003366;">&lt;label   for=&#8221;personname&#8221; &gt;Name&lt;/label&gt;</span></p>
<p><span style="color: #003366;">&lt;input   name=&#8221;personname&#8221;   type=&#8221;text&#8221; /&gt;</span></p>
<p><span style="color: #003366;">&lt;/div&gt;</span></p>
<p><span style="color: #003366;">&lt;div  &gt;</span></p>
<p><span style="color: #003366;">&lt;label   for=&#8221;email&#8221; &gt;E-mail&lt;/label&gt;</span></p>
<p><span style="color: #003366;">&lt;input   name=&#8221;email&#8221;   type=&#8221;text&#8221; /&gt;</span></p>
<p><span style="color: #003366;">&lt;/div&gt;</span></p>
<p><span style="color: #003366;">&lt;div  &gt;</span></p>
<p><span style="color: #003366;">&lt;label   for=&#8221;website&#8221; &gt;Website&lt;/label&gt;</span></p>
<p><span style="color: #003366;">&lt;input   name=&#8221;website&#8221;   type=&#8221;text&#8221; /&gt;</span></p>
<p><span style="color: #003366;">&lt;/div&gt;</span></p>
<p><span style="color: #003366;">&lt;div  &gt;</span></p>
<p><span style="color: #003366;">&lt;label   for=&#8221;details&#8221; &gt;Details&lt;/label&gt;</span></p>
<p><span style="color: #003366;">&lt;textarea   name=&#8221;details&#8221;   &gt;&lt;/textarea&gt;</span></p>
<p><span style="color: #003366;">&lt;/div&gt;</span></p>
<p><span style="color: #003366;">&lt;/div&gt;</span></p>
<p><span style="color: #003366;">&lt;!&#8211;div  &gt;&lt;/div&#8211;&gt;</span></p>
<p><span style="color: #003366;">&lt;input   type=&#8221;submit&#8221;   value=&#8221;Submit&#8221; /&gt;</span></p>
<p><span style="color: #003366;">&lt;/form&gt;</span></p>
<p><span style="color: #003366;">&lt;/div&gt;</span></p>
<p><span style="color: #003366;">&lt;/body&gt;</span></p>
<p><span style="color: #003366;">&lt;/html&gt;</span></td>
</tr>
</tbody>
</table>
<p>If you would rather use Google’s API instead of downloading a copy of jQuery, you can just replace this part of the code “&lt;script type=&#8221;text/javascript&#8221; src=&#8221;jquery-1.4.2.min.js&#8221;&gt;&lt;/script&gt;” with the one below:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><span style="color: #003366;">&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js&#8221;&gt;&lt;/script&gt;</span></td>
</tr>
</tbody>
</table>
<p>Once you’ve decided where to get the source for your jQuery, let’s move on to CSS.</p>
<p><strong>CSS</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><span style="color: #003366;">*{</span>&nbsp;</p>
<p><span style="color: #003366;">margin:0;</span></p>
<p><span style="color: #003366;">padding:0;</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">textarea, input{</span></p>
<p><span style="color: #003366;">outline:none;</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">body{</span></p>
<p><span style="color: #003366;">background:#3D3D3D;</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">#page-wrap{</span></p>
<p><span style="color: #003366;">width:350px;</span></p>
<p><span style="color: #003366;">min-height:500px;</span></p>
<p><span style="color: #003366;">height:auto;</span></p>
<p><span style="color: #003366;">margin:0 auto;</span></p>
<p><span style="color: #003366;">position:relative;</span></p>
<p><span style="color: #003366;">padding-top:50px;</span></p>
<p><span style="color: #003366;">font:15px Arial;</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">#myform{</span></p>
<p><span style="color: #003366;">width:375px;</span></p>
<p><span style="color: #003366;">-moz-border-radius:   8px; /* FF1+ */</span></p>
<p><span style="color: #003366;">-webkit-border-radius: 8px; /* Saf3+, Chrome */</span></p>
<p><span style="color: #003366;">border-radius:   8px; /* Opera 10.5, IE 9 */</span></p>
<p><span style="color: #003366;">margin:0 auto;</span></p>
<p><span style="color: #003366;">position:relative;</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">#myform label{</span></p>
<p><span style="color: #003366;">top:10px;</span></p>
<p><span style="color: #003366;">position:relative;</span></p>
<p><span style="color: #003366;">color:white;</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">.field{</span></p>
<p><span style="color: #003366;">background:gray;</span></p>
<p><span style="color: #003366;">padding:15px   15px 0 10px;</span></p>
<p><span style="color: #003366;">height:50px;</span></p>
<p><span style="color: #003366;">width:350px;</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">#myform div:first-child{</span></p>
<p><span style="color: #003366;">-moz-border-radius-topleft:   8px;</span></p>
<p><span style="color: #003366;">-moz-border-radius-topright:   8px;</span></p>
<p><span style="color: #003366;">-webkit-border-top-left-radius:   8px;</span></p>
<p><span style="color: #003366;">-webkit-border-top-right-radius:   8px;</span></p>
<p><span style="color: #003366;">border-top-left-radius:   8px;</span></p>
<p><span style="color: #003366;">border-top-right-radius:   8px;</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">#myform div:last-child{</span></p>
<p><span style="color: #003366;">-moz-border-radius-bottomleft:   8px;</span></p>
<p><span style="color: #003366;">-moz-border-radius-bottomright:   8px;</span></p>
<p><span style="color: #003366;">-webkit-border-bottom-left-radius:   8px;</span></p>
<p><span style="color: #003366;">-webkit-border-bottom-right-radius:   8px;</span></p>
<p><span style="color: #003366;">border-bottom-left-radius:   8px;</span></p>
<p><span style="color: #003366;">border-bottom-right-radius:   8px;</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">.area{</span></p>
<p><span style="color: #003366;">padding:15px   15px 0 10px;</span></p>
<p><span style="color: #003366;">min-height:195px;</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">.inputfield{</span></p>
<p><span style="color: #003366;">padding:0 10px 0   10px;</span></p>
<p><span style="color: #003366;">float:right;</span></p>
<p><span style="color: #003366;">width:200px;</span></p>
<p><span style="color: #003366;">font:15px Arial;</span></p>
<p><span style="color: #003366;">border:2px aqua   inset;</span></p>
<p><span style="color: #003366;">-moz-border-radius:   8px; /* FF1+ */</span></p>
<p><span style="color: #003366;">-webkit-border-radius:   8px; /* Saf3+, Chrome */</span></p>
<p><span style="color: #003366;">border-radius:   8px; /* Opera 10.5, IE 9 */</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">.textfield{</span></p>
<p><span style="color: #003366;">height:25px;</span></p>
<p><span style="color: #003366;">padding-top:5px;</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">.textarea1{</span></p>
<p><span style="color: #003366;">padding-top:10px;</span></p>
<p><span style="color: #003366;">padding-bottom:10px;</span></p>
<p><span style="color: #003366;">height:150px;</span></p>
<p><span style="color: #003366;">max-height:200px;</span></p>
<p><span style="color: #003366;">max-width:250px;</span></p>
<p><span style="color: #003366;">}</span></td>
</tr>
</tbody>
</table>
<p>If you take a look at the result at this point you’ll notice that you still have the default look for the submit button. If you want to change it, just copy/paste and add this code in your CSS.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><span style="color: #003366;">.submitbutton{</span>&nbsp;</p>
<p><span style="color: #003366;">border: 0px;</span></p>
<p><span style="color: #003366;">float:right;</span></p>
<p><span style="color: #003366;">width:75px;</span></p>
<p><span style="color: #003366;">height:40px;</span></p>
<p><span style="color: #003366;">font:20px Arial;</span></p>
<p><span style="color: #003366;">position:relative;</span></p>
<p><span style="color: #003366;">top:20px;</span></p>
<p><span style="color: #003366;">right:10px;</span></p>
<p><span style="color: #003366;">-moz-border-radius:   8px;</span></p>
<p><span style="color: #003366;">-webkit-border-radius:   8px;</span></p>
<p><span style="color: #003366;">border-radius:   8px;</span></p>
<p><span style="color: #003366;">-moz-box-shadow:   0px 0px 30px #3cdfdf;</span></p>
<p><span style="color: #003366;">-webkit-box-shadow:   0px 0px 30px #3cdfdf;</span></p>
<p><span style="color: #003366;">box-shadow: 0px   0px 30px #3cdfdf;</span></p>
<p><span style="color: #003366;">background-image:   -moz-linear-gradient(top, white, #3cdfdf); /* FF3.6 */</span></p>
<p><span style="color: #003366;">background-image:   -webkit-gradient(linear,left top,left bottom,color-stop(0,   white),color-stop(1, #3cdfdf)); /* Saf4+, Chrome */</span></p>
<p><span style="color: #003366;">filter:    progid:DXImageTransform.Microsoft.gradient(startColorStr=&#8217;white&#8217;,   EndColorStr=&#8217;#3cdfdf&#8217;); /* IE6,IE7 */</span></p>
<p><span style="color: #003366;">-ms-filter:   &#8220;progid:DXImageTransform.Microsoft.gradient(startColorStr=&#8217;white&#8217;,   EndColorStr=&#8217;#3cdfdf&#8217;)&#8221;; /* IE8 */</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">.submitbutton:hover{</span></p>
<p><span style="color: #003366;">background: #3cdfdf;</span></p>
<p><span style="color: #003366;">color:white;</span></p>
<p><span style="color: #003366;">}</span></td>
</tr>
</tbody>
</table>
<p>The last piece of CSS code below will add the glowing effect to the neon edges of your input boxes. This part (<strong>@-webkit-keyframes</strong>) by the way, only works in browsers using the Webkit layout engine like Chrome and Safari:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><span style="color: #003366;">@-webkit-keyframes pulsate {</span>&nbsp;</p>
<p><span style="color: #003366;">0%   {    -webkit-box-shadow: 0px 0px 0px #3cdfdf;  border:2px aqua inset  }</span></p>
<p><span style="color: #003366;">25%  {    -webkit-box-shadow: 0px 0px 35px #3cdfdf; border:2px aqua inset  }</span></p>
<p><span style="color: #003366;">50%  {    -webkit-box-shadow: 0px 0px 0px white;    border:2px white inset }</span></p>
<p><span style="color: #003366;">75%  {    -webkit-box-shadow: 0px 0px 35px white;   border:2px white inset }</span></p>
<p><span style="color: #003366;">100% {  -webkit-box-shadow: 0px 0px 0px   #3cdfdf;  border:2px aqua inset  }</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">.inputfield:focus{</span></p>
<p><span style="color: #003366;">-webkit-animation-name:   pulsate;</span></p>
<p><span style="color: #003366;">-webkit-animation-duration:   1.5s;</span></p>
<p><span style="color: #003366;">-webkit-animation-iteration-count:   infinite;</span></p>
<p><span style="color: #003366;">-moz-box-shadow:   0px 0px 30px  #3cdfdf;</span></p>
<p><span style="color: #003366;">box-shadow: 0px   0px 30px #3cdfdf;</span></p>
<p><span style="color: #003366;">}</span></td>
</tr>
</tbody>
</table>
<p>And lastly, we’ll work on the jQuery. This part of the tutorial can actually be considered as optional since it simply adds a black background to set off the highlighted input field (see comparison image below).</p>
<p><a href="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/neon-blink-effect-neonhighlight.jpg"><img class="aligncenter size-medium wp-image-24488" title="JQuery Background" src="http://blogfreakz.com/wp-content/uploads/2012/01/28-e1327323930229-300x33.jpg" alt="28 e1327323930229 300x33 Make Blinking Neon Forms with CSS3 and jQuery" width="300" height="33" /></a></p>
<p>If you’d like to include it in your design then just copy/paste this code in to your .js file:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><span style="color: #003366;">$(document).ready(function(){</span>&nbsp;</p>
<p><span style="color: #003366;">var   globalParent=null;</span></p>
<p><span style="color: #003366;">var   mouse_is_inside=false;</span></p>
<p><span style="color: #003366;">/*The snippet   below is activated when an inputfield is focused*/</span></p>
<p><span style="color: #003366;">$(&#8216;.inputfield&#8217;).focus(function(){</span></p>
<p><span style="color: #003366;">globalParent=$(this).parent(&#8216;div&#8217;);</span></p>
<p><span style="color: #003366;">globalParent.click();</span></p>
<p><span style="color: #003366;">});</span></p>
<p><span style="color: #003366;">/*This following   part will be activated when the inputfield loses focus*/</span></p>
<p><span style="color: #003366;">$(&#8216;.inputfield&#8217;).blur(function(){</span></p>
<p><span style="color: #003366;">globalParent.click();</span></p>
<p><span style="color: #003366;">});</span></p>
<p><span style="color: #003366;">/*Following part   will be activated when the user clicks anywhere inside</span></p>
<p><span style="color: #003366;">the container   div of the inputfield*/</span></p>
<p><span style="color: #003366;">$(&#8216;.field&#8217;).click(function(){</span></p>
<p><span style="color: #003366;">if(!($(this).is(&#8216;.dummy&#8217;))){</span></p>
<p><span style="color: #003366;">$(&#8216;.dummy&#8217;).css(&#8216;background-color&#8217;,'gray&#8217;);</span></p>
<p><span style="color: #003366;">$(&#8216;.dummy   label&#8217;).css(&#8216;color&#8217;,'white&#8217;);</span></p>
<p><span style="color: #003366;">$(&#8216;.dummy&#8217;).removeClass(&#8216;dummy&#8217;);</span></p>
<p><span style="color: #003366;">$(this).css(&#8216;background-color&#8217;,'black&#8217;);</span></p>
<p><span style="color: #003366;">$(this).children(&#8216;label&#8217;).css(&#8216;color&#8217;,'#3cdfdf&#8217;);</span></p>
<p><span style="color: #003366;">$(this).addClass(&#8216;dummy&#8217;);</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">});</span></p>
<p><span style="color: #003366;">/*The following   code checks time and again whether the mouse is inside the form or not*/</span></p>
<p><span style="color: #003366;">$(&#8216;form&#8217;).hover(function(){</span></p>
<p><span style="color: #003366;">mouse_is_inside=true;</span></p>
<p><span style="color: #003366;">},</span></p>
<p><span style="color: #003366;">function(){</span></p>
<p><span style="color: #003366;">mouse_is_inside=false;</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">);</span></p>
<p><span style="color: #003366;">/*If user clicks   anywhere outside the form, all highlighting is removed*/</span></p>
<p><span style="color: #003366;">$(&#8216;body&#8217;).click(function(){</span></p>
<p><span style="color: #003366;">if(!mouse_is_inside)</span></p>
<p><span style="color: #003366;">{</span></p>
<p><span style="color: #003366;">$(&#8216;.field&#8217;).css(&#8216;background-color&#8217;,'gray&#8217;);</span></p>
<p><span style="color: #003366;">$(&#8216;.field label&#8217;).css(&#8216;color&#8217;,'white&#8217;);</span></p>
<p><span style="color: #003366;">$(&#8216;.dummy&#8217;).removeClass(&#8216;dummy&#8217;);</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">});</span></p>
<p><span style="color: #003366;">});</span></td>
</tr>
</tbody>
</table>
<p>And that concludes this tutorial. Try to run or open your HTML and see if it’ll work on your browser. I personally have only tested it in the latest version of Chrome and IE9, and the blinking effect doesn’t work in IE9. Yet. Still, I hope you enjoy this one!<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/tutorial/make-blinking-neon-forms-with-css3-and-jquery/" title="neon jquery">neon jquery</a></li>
<li><a href="http://blogfreakz.com/tutorial/make-blinking-neon-forms-with-css3-and-jquery/" title="css3 blinking">css3 blinking</a></li>
<li><a href="http://blogfreakz.com/tutorial/make-blinking-neon-forms-with-css3-and-jquery/" title="jquery neon">jquery neon</a></li>
<li><a href="http://blogfreakz.com/tutorial/make-blinking-neon-forms-with-css3-and-jquery/" title="input field glow css">input field glow css</a></li>
<li><a href="http://blogfreakz.com/tutorial/make-blinking-neon-forms-with-css3-and-jquery/" title="NEON BORDER">NEON BORDER</a></li>
<li><a href="http://blogfreakz.com/tutorial/make-blinking-neon-forms-with-css3-and-jquery/" title="border neon css">border neon css</a></li>
<li><a href="http://blogfreakz.com/tutorial/make-blinking-neon-forms-with-css3-and-jquery/" title="jquery neon glow">jquery neon glow</a></li>
<li><a href="http://blogfreakz.com/tutorial/make-blinking-neon-forms-with-css3-and-jquery/" title="css3 blinking notification">css3 blinking notification</a></li>
<li><a href="http://blogfreakz.com/tutorial/make-blinking-neon-forms-with-css3-and-jquery/" title="rounded black border sign up form">rounded black border sign up form</a></li>
<li><a href="http://blogfreakz.com/tutorial/make-blinking-neon-forms-with-css3-and-jquery/" title="jquery neon navigation">jquery neon navigation</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/tutorial/make-blinking-neon-forms-with-css3-and-jquery/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>9 Highly Useful Form &amp; Validation jQuery Plugins</title>
		<link>http://blogfreakz.com/web-design/9-highly-useful-form-validation-jquery-plugins/</link>
		<comments>http://blogfreakz.com/web-design/9-highly-useful-form-validation-jquery-plugins/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 08:00:59 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Forms]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24261</guid>
		<description><![CDATA[It&#8217;s been another very productive year for web designers and developers this past 2011, which was brimming with jQuery plugins. And according to my observation, many of them are content sliders. So to start off this year, we&#8217;ll focus on another particular set of plugins that have made 2011 a bit easier for web developers. [...]]]></description>
			<content:encoded><![CDATA[<p align="left">It&#8217;s been another very productive year for web designers and developers this past 2011, which was brimming with jQuery plugins. And according to my observation, many of them are content sliders.</p>
<p align="left">So to start off this year, we&#8217;ll focus on another particular set of plugins that have made 2011 a bit easier for web developers. This is my list of the Most Helpful New <a href="http://blogfreakz.com/category/form/">Form</a> &#038; Validation Plugins of 2011, in random order:</p>
<p align="left">1. <a href="http://js.recurly.com/"><strong>Recurly.js</strong></a> – This plugin allows you to create secure, PCI compliant transaction forms with fully customizable CSS.</p>
<p><a href="http://webappszone.com/wp-content/uploads/2011/12/recurly-js-open-source-javascript-library-for-secure-e-commerce-transaction-forms.jpg"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/16-285x175.jpg" alt="16 285x175 9 Highly Useful Form & Validation jQuery Plugins" title="Recurly" width="285" height="175" class="aligncenter size-medium wp-image-24270" /></a></p>
<p align="left"><a href="https://js.recurly.com/examples/"><strong>Demo</strong></a></p>
<p align="left">2.	<a href="http://code.google.com/p/idealforms/"><strong>Ideal Forms</strong></a></a> – This deceptively small framework is used to build powerful and beautiful online forms. It is highly customizable because it’s all CSS, and also supports the latest browser versions.</p>
<p><a href="http://i43.tinypic.com/ori2c3.png"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/25-285x175.jpg" alt="25 285x175 9 Highly Useful Form & Validation jQuery Plugins" title="Ideal Forms" width="285" height="175" class="aligncenter size-medium wp-image-24273" /></a></p>
<p align="left"><a href="http://spacirdesigns.com/jqidealforms/"><strong>Demo</strong></a></p>
<p align="left">3.	<a href="http://fuelyourcoding.com/scripts/infield/"><strong>In-Field Labels</strong></a> – This plugin turns properly formatted HTML forms into forms with in-field label support. Labels fade when the field is focused and disappear when text entry begins. Clearing a field and leaving brings back the label into view. It supports old browsers (i.e. IE6 and Firefox 2+) though it is worth noting that IE6 requires a background-color be set on the label to match the field background. Also, there’s a minor issue about the autocomplete function, which I suggest you read about in their documentation.</p>
<p><a href="http://c3.yousaytoo.com/rss_temp_image/pics/3/79/21/5466603/remote_image20110403-14110-bk07js-0.jpg"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/32-285x175.jpg" alt="32 285x175 9 Highly Useful Form & Validation jQuery Plugins" title="In-Field Labels" width="285" height="175" class="aligncenter size-medium wp-image-24277" /></a></p>
<p align="left"><a href="http://github.com/dcneiner/In-Field-Labels-jQuery-Plugin/"><strong>Download1 (@Github)</strong></a>, <a href="http://fuelyourcoding.com/scripts/infield/InFieldLabels.zip"><strong>Download2 (.zip)</strong></a></p>
<p align="left">4.	<a href="http://simsalabim.github.com/sisyphus/"><strong>Sisyphus</strong></a> – Just like Gmail, this plugin periodically saves form entries while you’re composing messages. So when your visitors accidentally close the tab or browser while filling out your form, all the changes they made are restored once it&#8217;s reopened.</p>
<p><a href="http://web.bogdanteodoru.com/wp-content/uploads/2011/12/gmail-like-local-storage-jquery.jpg"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/42-285x175.jpg" alt="42 285x175 9 Highly Useful Form & Validation jQuery Plugins" title="Sisyphus" width="285" height="175" class="aligncenter size-medium wp-image-24278" /></a></p>
<p align="left"><strong><a href="http://simsalabim.github.com/sisyphus/">Demo</a>, <a href="http://github.com/simsalabim/sisyphus/zipball/master">Download1 (.zip)</a>, <a href="http://github.com/simsalabim/sisyphus/tarball/master">Download2 (.tar)</a></strong></p>
<p align="left">5.	<a href="http://www.egrappler.com/jquery-credit-card-validation-plugin-smart-validate/"><strong>Smart Validate</strong></a> – This <a href="http://blogfreakz.com/category/jquery/">jQuery</a> credit card validation plugin ensures that the user has entered a valid credit card number before making the actual transaction. It supports all major credit cards (American Express, Mastercard, Visa, Discover, Diners Club) but it can also easily be extended to support other credit cards as well.</p>
<p><a href="http://www.egrappler.com/wp-content/uploads/2011/08/credit-card-validator.jpg"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/52-285x175.jpg" alt="52 285x175 9 Highly Useful Form & Validation jQuery Plugins" title="Smart Validate" width="285" height="175" class="aligncenter size-medium wp-image-24279" /></a></p>
<p align="left"><strong><a href="http://www.egrappler.com/ccvalidate/index.htm">Demo</a>, <a href="http://www.egrappler.com/ccvalidate/credit-card-validate.zip">Download (.zip)</a></strong></p>
<p align="left">6.	<a href="http://www.josscrowcroft.com/projects/motioncaptcha-jquery-plugin/"><strong>MotionCAPTCHA</strong></a> – Now this is a totally different approach in verifying human interaction. jQuery CAPTCHA is a plugin that requires users to sketch the shape they see in the canvas instead of typing a series of random text in order to submit a form.</p>
<p><a href="http://www.josscrowcroft.com/wp-content/uploads/2011/05/motioncaptcha-screenshot.jpg"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/62-285x175.jpg" alt="62 285x175 9 Highly Useful Form & Validation jQuery Plugins" title="MotionCaptcha" width="285" height="175" class="aligncenter size-medium wp-image-24282" /></a></p>
<p align="left"><a href="http://www.josscrowcroft.com/demos/motioncaptcha/"><strong>Demo</strong></a></p>
<p align="left">7.	<a href="http://www.egrappler.com/jquery-strong-password-plugin-power-pwchecker/"><strong>Power PWChecker</strong></a> – This is a free jQuery plugin that helps users determine the strength of their password. This plugin can be integrated seamlessly with any online form and it also gives users hints on creating more secure passwords.</p>
<p><a href="http://www.egrappler.com/wp-content/uploads/2011/08/password-strength-checker.jpg"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/72-285x175.jpg" alt="72 285x175 9 Highly Useful Form & Validation jQuery Plugins" title="PowerPWChecker" width="285" height="175" class="aligncenter size-medium wp-image-24284" /></a></p>
<p align="left"><a href="http://www.egrappler.com/pschecker/index.htm"><strong>Demo</strong><br />
</a></p>
<p align="left">8. <a href="http://jamielottering.github.com/DropKick/"><strong>DropKick</strong></a> – This extremely light <a href="http://blogfreakz.com/menus/dropkick-jquery-plugin-for-creating-custom-dropdown-menus/">plugin</a> lets you easily create custom dropdown menus. It also degrades gracefully for visitors on older browsers. It even works on IE7 and 8!</p>
<p><a href="http://blogfreakz.com/wp-content/uploads/2011/07/dropkick.jpg"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/81-285x175.jpg" alt="81 285x175 9 Highly Useful Form & Validation jQuery Plugins" title="Dropkick" width="285" height="175" class="aligncenter size-medium wp-image-24285" /></a></p>
<p align="left"><strong><a href="http://jamielottering.github.com/DropKick/">Demo</a>, <a href="http://github.com/JamieLottering/DropKick/zipball/master">Download (.zip)</strong></a></p>
<p align="left">9.	<strong>TagBox Plugin</strong> – This jQuery plugin helps the user add tags like input in your forms.</p>
<p><a href="http://speckyboy.com/wp-content/uploads/2011/09/06-tagbox.jpg"><img src="http://blogfreakz.com/wp-content/uploads/2012/01/92-285x175.jpg" alt="92 285x175 9 Highly Useful Form & Validation jQuery Plugins" title="Tagbox" width="285" height="175" class="aligncenter size-medium wp-image-24286" /></a></p>
<p align="left"><strong><a href="http://www.geektantra.com/projects/jquery-tagbox/">Demo</a>, <a href="http://jquery-tagbox.googlecode.com/files/jquery-tagbox-1.0.1.zip">Download (.zip)</strong></a></p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/9-highly-useful-form-validation-jquery-plugins/" title="beautiful forms css">beautiful forms css</a></li>
<li><a href="http://blogfreakz.com/web-design/9-highly-useful-form-validation-jquery-plugins/" title="form css html">form css html</a></li>
<li><a href="http://blogfreakz.com/web-design/9-highly-useful-form-validation-jquery-plugins/" title="idealforms css">idealforms css</a></li>
<li><a href="http://blogfreakz.com/web-design/9-highly-useful-form-validation-jquery-plugins/" title="css jquery contact form design">css jquery contact form design</a></li>
<li><a href="http://blogfreakz.com/web-design/9-highly-useful-form-validation-jquery-plugins/" title="form css">form css</a></li>
<li><a href="http://blogfreakz.com/web-design/9-highly-useful-form-validation-jquery-plugins/" title="form fields css3">form fields css3</a></li>
<li><a href="http://blogfreakz.com/web-design/9-highly-useful-form-validation-jquery-plugins/" title="jquery validation form demo">jquery validation form demo</a></li>
<li><a href="http://blogfreakz.com/web-design/9-highly-useful-form-validation-jquery-plugins/" title="validation form free template html5">validation form free template html5</a></li>
<li><a href="http://blogfreakz.com/web-design/9-highly-useful-form-validation-jquery-plugins/" title="jquery credit card form">jquery credit card form</a></li>
<li><a href="http://blogfreakz.com/web-design/9-highly-useful-form-validation-jquery-plugins/" title="validation jquery">validation jquery</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/9-highly-useful-form-validation-jquery-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Valid8 &#8211; Feature Rich Form Validation Plugin For jQuery</title>
		<link>http://blogfreakz.com/jquery/valid8-feature-rich-form-validation-plugin-for-jquery/</link>
		<comments>http://blogfreakz.com/jquery/valid8-feature-rich-form-validation-plugin-for-jquery/#comments</comments>
		<pubDate>Sun, 10 Apr 2011 03:25:46 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Forms]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[validation]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=18522</guid>
		<description><![CDATA[Valid8 is form validation plugin for jQuery that features support for three types of validation techniques; Regular expressions, custom javascript functions and Ajax requests. The three techniques can be combined in any way you want. For example, in a very extreme case, you can use two regular expressions, one javascript function and three ajax requests [...]]]></description>
			<content:encoded><![CDATA[<p><a title="valid8" rel="nofollow" href="http://unwrongest.com/projects/valid8/" target="_blank">Valid8</a> is form validation plugin for jQuery that features support for three types of validation techniques; Regular expressions, custom javascript functions and Ajax requests. The three techniques can be combined in any way you want. For example, in a very extreme case, you can use two regular expressions, one javascript function and three ajax requests for validating a single input field.</p>
<p><span id="more-18522"></span></p>
<p><a rel="nofollow" href="http://unwrongest.com/projects/valid8/"><img class="alignnone size-full wp-image-18524" title="valid8" src="http://blogfreakz.com/wp-content/uploads/2011/04/valid8.jpg" alt="valid8 Valid8   Feature Rich Form Validation Plugin For jQuery" width="600" height="300" /></a></p>
<p>Valid8 ranges from super simple ‘making an input field required’ to an near endless possibility of complexity. To implement Valid8 is pretty simple, for example, calling the valid8 method without any arguments will show the default validation error message ‘Required’ if the input field is left empty. Other example is by calling the valid8 method with a string as an argument will show the string as an a validation error message if the input field is left empty.</p>
<p class="download">Requirements: jQuery Framework<br />
Demo: <a title="valid8" rel="nofollow" href="http://unwrongest.com/projects/valid8/" target="_blank">http://unwrongest.com/projects/valid8/</a><br />
License: MIT License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/jquery/valid8-feature-rich-form-validation-plugin-for-jquery/" title="valid8 jquery">valid8 jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/valid8-feature-rich-form-validation-plugin-for-jquery/" title="valid8 submit">valid8 submit</a></li>
<li><a href="http://blogfreakz.com/jquery/valid8-feature-rich-form-validation-plugin-for-jquery/" title="jquery rich form validation">jquery rich form validation</a></li>
<li><a href="http://blogfreakz.com/jquery/valid8-feature-rich-form-validation-plugin-for-jquery/" title="single input login form javascript">single input login form javascript</a></li>
<li><a href="http://blogfreakz.com/jquery/valid8-feature-rich-form-validation-plugin-for-jquery/" title="valid8 ajaxrequests">valid8 ajaxrequests</a></li>
<li><a href="http://blogfreakz.com/jquery/valid8-feature-rich-form-validation-plugin-for-jquery/" title="valid jquery">valid jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/valid8-feature-rich-form-validation-plugin-for-jquery/" title="inputfield tutorial jquery">inputfield tutorial jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/valid8-feature-rich-form-validation-plugin-for-jquery/" title="ajax input validation">ajax input validation</a></li>
<li><a href="http://blogfreakz.com/jquery/valid8-feature-rich-form-validation-plugin-for-jquery/" title="valid8 single">valid8 single</a></li>
<li><a href="http://blogfreakz.com/jquery/valid8-feature-rich-form-validation-plugin-for-jquery/" title="jquery form live validation">jquery form live validation</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/jquery/valid8-feature-rich-form-validation-plugin-for-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snow – A Slick And Modern Web UI Kit</title>
		<link>http://blogfreakz.com/form/snow-%e2%80%93-a-slick-and-modern-web-ui-kit/</link>
		<comments>http://blogfreakz.com/form/snow-%e2%80%93-a-slick-and-modern-web-ui-kit/#comments</comments>
		<pubDate>Sat, 02 Apr 2011 06:03:33 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Forms]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[PSD]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=18178</guid>
		<description><![CDATA[This set of user interface elements was created specifically for light, modern websites and applications. Each of these elements will fit beautifully with subtle textured or solid backgrounds, making your site rich with design elements and beauty. Each individual element has been hand-crafted with attention to detail for a truly pixel perfect result, and all [...]]]></description>
			<content:encoded><![CDATA[<p>This set of user interface elements was created  specifically for light, modern websites and applications. Each of these  elements will fit beautifully with subtle textured or solid backgrounds,  making your site rich with design elements and beauty.</p>
<p><span id="more-18178"></span><a rel="nofollow" href="http://spyrestudios.com/freebies/snow-modern-ui-kit/"><img class="alignnone size-full wp-image-18179" title="snow-ui-kit" src="http://blogfreakz.com/wp-content/uploads/2011/04/snow-ui-kit.jpg" alt="snow ui kit Snow – A Slick And Modern Web UI Kit" width="600" height="300" /></a></p>
<p>Each individual element has been hand-crafted with attention to  detail for a truly pixel perfect result, and all layers are grouped and  organized for ease of use. This UI kit was designed for <a title="spyrestudios" rel="nofollow" href="http://spyrestudios.com" target="_blank">spyrestudios</a> by <a rel="nofollow" href="http://medialoot.com/join/?utm_source=spyrestudios_newfreebie&amp;utm_medium=banner&amp;utm_campaign=SpyreStudios">MediaLoot</a>.</p>
<p class="download">Website: <a title="snow-modern-ui-kit" rel="nofollow" href="http://spyrestudios.com/freebies/snow-modern-ui-kit/" target="_blank">http://spyrestudios.com/freebies/snow-modern-ui-kit/</a></p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/form/snow-%e2%80%93-a-slick-and-modern-web-ui-kit/" title="ui kit">ui kit</a></li>
<li><a href="http://blogfreakz.com/form/snow-%e2%80%93-a-slick-and-modern-web-ui-kit/" title="modern websites">modern websites</a></li>
<li><a href="http://blogfreakz.com/form/snow-%e2%80%93-a-slick-and-modern-web-ui-kit/" title="professional ui kit modern">professional ui kit modern</a></li>
<li><a href="http://blogfreakz.com/form/snow-%e2%80%93-a-slick-and-modern-web-ui-kit/" title="slick modern website templates">slick modern website templates</a></li>
<li><a href="http://blogfreakz.com/form/snow-%e2%80%93-a-slick-and-modern-web-ui-kit/" title="pixel perfect web elements">pixel perfect web elements</a></li>
<li><a href="http://blogfreakz.com/form/snow-%e2%80%93-a-slick-and-modern-web-ui-kit/" title="slick template web interface">slick template web interface</a></li>
<li><a href="http://blogfreakz.com/form/snow-%e2%80%93-a-slick-and-modern-web-ui-kit/" title="modern Application UI Design">modern Application UI Design</a></li>
<li><a href="http://blogfreakz.com/form/snow-%e2%80%93-a-slick-and-modern-web-ui-kit/" title="light ui">light ui</a></li>
<li><a href="http://blogfreakz.com/form/snow-%e2%80%93-a-slick-and-modern-web-ui-kit/" title="css ui kit">css ui kit</a></li>
<li><a href="http://blogfreakz.com/form/snow-%e2%80%93-a-slick-and-modern-web-ui-kit/" title="web ui beauty element">web ui beauty element</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/form/snow-%e2%80%93-a-slick-and-modern-web-ui-kit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jFormer –  jQuery Form Framework</title>
		<link>http://blogfreakz.com/jquery/jformer-jquery-form-framework/</link>
		<comments>http://blogfreakz.com/jquery/jformer-jquery-form-framework/#comments</comments>
		<pubDate>Sat, 05 Mar 2011 08:29:54 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Forms]]></category>
		<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=17175</guid>
		<description><![CDATA[jFormer is a form framework written on top of jQuery that allows you to quickly generate beautiful, standards compliant forms. Leveraging the latest techniques in web design, jFormer helps you create web forms that validate client-side, validate server-side and without changing pages (using AJAX). Features Painless form validation Easily customizable using CSS User controlled field [...]]]></description>
			<content:encoded><![CDATA[<p><a title="jformer" rel="nofollow" href="http://www.jformer.com/" target="_blank"><strong>jFormer</strong></a> is a form  framework written on top of jQuery that allows you to quickly generate  beautiful, standards compliant forms. Leveraging the latest techniques  in web design, jFormer helps you create web forms that validate client-side, validate server-side and without changing pages (using AJAX).</p>
<p><span id="more-17175"></span><a rel="nofollow" href="http://www.jformer.com/"><img class="alignnone size-large wp-image-17176" title="jformer" src="http://blogfreakz.com/wp-content/uploads/2011/03/jformer-600x250.jpg" alt="jformer 600x250 jFormer –  jQuery Form Framework" width="600" height="250" /></a></p>
<h3>Features</h3>
<ul>
<li>Painless form validation</li>
<li>Easily customizable using CSS</li>
<li>User controlled field duplication</li>
<li>Bot prevention (no need for CAPTCHAs)</li>
<li>Users can save and resume forms</li>
<li>Form triggers lock or unlock form fields</li>
<li><strong>One file</strong> for form generation and processing</li>
<li>Templates for common forms</li>
</ul>
<p>At 18K gzipped, jFormer is one of the first frameworks that comes <a rel="nofollow" href="http://code.google.com/closure/compiler/" target="_blank">closure compiled</a> with Google&#8217;s latest JavaScript compression technology.</p>
<p class="download">Requirements: jQuery Framework<br />
Demo: <a title="demo" rel="nofollow" href="http://www.jformer.com/" target="_blank">http://www.jformer.com/</a><br />
License:  MIT , GPL License
</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/jquery/jformer-jquery-form-framework/" title="jformer">jformer</a></li>
<li><a href="http://blogfreakz.com/jquery/jformer-jquery-form-framework/" title="jquery form">jquery form</a></li>
<li><a href="http://blogfreakz.com/jquery/jformer-jquery-form-framework/" title="jformer jquery">jformer jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/jformer-jquery-form-framework/" title="jquery form framework">jquery form framework</a></li>
<li><a href="http://blogfreakz.com/jquery/jformer-jquery-form-framework/" title="jquery jformer">jquery jformer</a></li>
<li><a href="http://blogfreakz.com/jquery/jformer-jquery-form-framework/" title="jFormer review">jFormer review</a></li>
<li><a href="http://blogfreakz.com/jquery/jformer-jquery-form-framework/" title="jquery forms">jquery forms</a></li>
<li><a href="http://blogfreakz.com/jquery/jformer-jquery-form-framework/" title="jformer cakephp">jformer cakephp</a></li>
<li><a href="http://blogfreakz.com/jquery/jformer-jquery-form-framework/" title="jquery framework">jquery framework</a></li>
<li><a href="http://blogfreakz.com/jquery/jformer-jquery-form-framework/" title="cakephp jformer">cakephp jformer</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/jquery/jformer-jquery-form-framework/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Textarea Counter Plugin for jQuery</title>
		<link>http://blogfreakz.com/jquery/textarea-counter-plugin-for-jquery/</link>
		<comments>http://blogfreakz.com/jquery/textarea-counter-plugin-for-jquery/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 04:23:44 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Forms]]></category>
		<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=13951</guid>
		<description><![CDATA[Textarea Counter is plugin for jQuery that allows you to set and limit user input by max characters within html textarea (it is only limited by characters other than words). It binds keyup, paste and drag events. The extra div is displayed under the textarea, which shows the current number of input characters and words. [...]]]></description>
			<content:encoded><![CDATA[<p>Textarea Counter is plugin for jQuery that allows you to set and limit user input by max characters within html textarea (it is only limited by characters other than words). It binds keyup, paste and drag events. The extra div is displayed under the textarea, which shows the current number of input characters and words.</p>
<p><span id="more-13951"></span></p>
<p><a rel="nofollow" href="http://roy-jin.appspot.com/jsp/textareaCounter.jsp"><img class="alignnone size-full wp-image-13954" title="character-counter" src="http://blogfreakz.com/wp-content/uploads/2010/12/character-counter.jpg" alt="character counter Textarea Counter Plugin for jQuery" width="600" height="200" /></a></p>
<p>You can set your own styles and customise the text counter information. You can also easily define the maximum number of characters by maxCharacterSize. If number of characters of user input is over the warning number, the information style will be changed to warning style.</p>
<p><strong>Demo </strong>: <a rel="nofollow" href="http://roy-jin.appspot.com/jsp/textareaCounter.jsp" target="_blank">http://roy-jin.appspot.com/jsp/textareaCounter.jsp</a><br />
<strong>Download </strong>: <a rel="nofollow" href="http://roy-jin.appspot.com/jsp/textareaCounter.jsp" target="_blank">http://roy-jin.appspot.com/jsp/textareaCounter.jsp</a><br />
<strong>License </strong>: MIT License<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/jquery/textarea-counter-plugin-for-jquery/" title="jquery textareaCounter plugin js">jquery textareaCounter plugin js</a></li>
<li><a href="http://blogfreakz.com/jquery/textarea-counter-plugin-for-jquery/" title="jquery textarea counter">jquery textarea counter</a></li>
<li><a href="http://blogfreakz.com/jquery/textarea-counter-plugin-for-jquery/" title="textarea counter">textarea counter</a></li>
<li><a href="http://blogfreakz.com/jquery/textarea-counter-plugin-for-jquery/" title="jquery counter plugin">jquery counter plugin</a></li>
<li><a href="http://blogfreakz.com/jquery/textarea-counter-plugin-for-jquery/" title="textareacounter plugin js">textareacounter plugin js</a></li>
<li><a href="http://blogfreakz.com/jquery/textarea-counter-plugin-for-jquery/" title="character counter">character counter</a></li>
<li><a href="http://blogfreakz.com/jquery/textarea-counter-plugin-for-jquery/" title="jQuery Textarea Counter Plugin">jQuery Textarea Counter Plugin</a></li>
<li><a href="http://blogfreakz.com/jquery/textarea-counter-plugin-for-jquery/" title="jquery textarea">jquery textarea</a></li>
<li><a href="http://blogfreakz.com/jquery/textarea-counter-plugin-for-jquery/" title="jquery counter design">jquery counter design</a></li>
<li><a href="http://blogfreakz.com/jquery/textarea-counter-plugin-for-jquery/" title="jquery textarea plugin">jquery textarea plugin</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/jquery/textarea-counter-plugin-for-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

