<?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/tag/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, 24 May 2012 01:59:08 +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>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>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="jquery neon">jquery neon</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="forms css3 border rounded">forms css3 border rounded</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="neon blink jquery">neon blink jquery</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="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>
</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>jQuery forms: Best plugins and tutorials for developers</title>
		<link>http://blogfreakz.com/news/jquery-forms-best-plugins-and-tutorials-for-developers/</link>
		<comments>http://blogfreakz.com/news/jquery-forms-best-plugins-and-tutorials-for-developers/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 17:20:06 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Forms]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/jquery-forms-best-plugins-and-tutorials-for-developers/</guid>
		<description><![CDATA[On this article our attention focuses on forms, an essential part of any website and how jQuery can be truly resourceful for improving them both in terms of functionality and aesthetic; throughout this post you are about to see some of the most helpful plugins and tutorials that can give you some guide for working [...]]]></description>
			<content:encoded><![CDATA[<p>On this article our attention focuses on forms, an essential part of any website and how jQuery can be truly resourceful for improving them both in terms of functionality and aesthetic; throughout this post you are about to see some of the most helpful plugins and tutorials that can give you some guide for working with forms.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/jquery-forms-best-plugins-and-tutorials-for-developers/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="jFormer review">jFormer review</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="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="jformer with cakephp">jformer with cakephp</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>Vintage typewriter: The sexiest jQuery contact form ever</title>
		<link>http://blogfreakz.com/news/vintage-typewriter-the-sexiest-jquery-contact-form-ever/</link>
		<comments>http://blogfreakz.com/news/vintage-typewriter-the-sexiest-jquery-contact-form-ever/#comments</comments>
		<pubDate>Wed, 02 Feb 2011 15:02:45 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[contact]]></category>
		<category><![CDATA[Forms]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[vintage]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/vintage-typewriter-the-sexiest-jquery-contact-form-ever/</guid>
		<description><![CDATA[A fancy typewriter contact form powered with jQuery, CSS and PHP along with a nice vector illustration]]></description>
			<content:encoded><![CDATA[<p>A fancy typewriter contact form powered with jQuery, CSS and PHP along with a nice vector illustration</p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/vintage-typewriter-the-sexiest-jquery-contact-form-ever/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Form Features in HTML5</title>
		<link>http://blogfreakz.com/form/html5-form/</link>
		<comments>http://blogfreakz.com/form/html5-form/#comments</comments>
		<pubDate>Sun, 19 Dec 2010 17:14:50 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Forms]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=13771</guid>
		<description><![CDATA[HTML5 includes many new features to make web forms a lot easier to write, and a lot more powerful and consistent across the Web. Opera is sharing article that gives a brief overview of some of the new form controls and functionalities that have been introduced. The article includes new form controls, new form attributes, [...]]]></description>
			<content:encoded><![CDATA[<p>HTML5 includes many new features to make web forms a lot easier to write, and a lot more powerful and consistent across the Web. Opera is sharing article that gives a brief overview of some of the new form controls and functionalities that have been introduced. The article includes new form controls, new form attributes, new output mechanisms, validation, styling with CSS3, and cross browser compatibility.<br />
<span id="more-13771"></span></p>
<p><a rel="nofollow" href="http://devfiles.myopera.com/articles/4582/html5-forms-example.html"><img class="alignnone size-full wp-image-13773" title="html5-form" src="http://blogfreakz.com/wp-content/uploads/2010/12/html5-form.jpg" alt="html5 form New Form Features in HTML5" width="704" height="518" /></a></p>
<p>To illustrate some of the new features, the article comes with a basic HTML5 forms example. Note: the look and feel of the new form controls and validation messages differs from brower to browser, so styling your forms to look reasonably consistent across browsers will still need careful consideration.</p>
<p class="download">
<strong>Source</strong>: <a rel="nofollow" title="new form features in HTML5" href="http://dev.opera.com/articles/view/new-form-features-in-HTML5/" target="_blank">http://dev.opera.com/articles/view/new-form-features-in-HTML5</a>
</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/form/html5-form/" title="html5 form">html5 form</a></li>
<li><a href="http://blogfreakz.com/form/html5-form/" title="html5 forms">html5 forms</a></li>
<li><a href="http://blogfreakz.com/form/html5-form/" title="form controls html5">form controls html5</a></li>
<li><a href="http://blogfreakz.com/form/html5-form/" title="form html5">form html5</a></li>
<li><a href="http://blogfreakz.com/form/html5-form/" title="html5 form controls">html5 form controls</a></li>
<li><a href="http://blogfreakz.com/form/html5-form/" title="html5 form example">html5 form example</a></li>
<li><a href="http://blogfreakz.com/form/html5-form/" title="html5 example of new features">html5 example of new features</a></li>
<li><a href="http://blogfreakz.com/form/html5-form/" title="html5 forms forms">html5 forms forms</a></li>
<li><a href="http://blogfreakz.com/form/html5-form/" title="html5 new features">html5 new features</a></li>
<li><a href="http://blogfreakz.com/form/html5-form/" title="форма html5">форма html5</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/form/html5-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SheepIt &#8211; Clone Form Elements Dynamically With jQuery</title>
		<link>http://blogfreakz.com/jquery/sheepit-clone-form-dynamically/</link>
		<comments>http://blogfreakz.com/jquery/sheepit-clone-form-dynamically/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 12:48:44 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Forms]]></category>
		<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=13230</guid>
		<description><![CDATA[SheepIt is a jQuery plugin that allows you to clone form elements dynamically. It is very useful to develop advanced forms that require the same type of load data multiple times. In addition, for ease of use, sheepIt added advanced controls that allow the user to modify the form dynamically adding or removing clones. It [...]]]></description>
			<content:encoded><![CDATA[<p><a title="SheepIt" rel="nofollow" href="http://www.mdelrosso.com/sheepit/index.php?lng=en_GB&amp;sec=home" target="_blank">SheepIt</a> is a jQuery plugin that allows you to <strong>clone form elements dynamically</strong>. It is very useful to develop advanced forms that require the same type of load data multiple times. In addition, for ease of use, sheepIt added advanced controls that allow  the user to modify the form dynamically adding or removing clones.</p>
<p><span id="more-13230"></span></p>
<p><a rel="nofollow" href="http://www.mdelrosso.com/sheepit/index.php?lng=en_GB&amp;sec=home"><img class="alignnone size-full wp-image-13231" title="sheepit" src="http://blogfreakz.com/wp-content/uploads/2010/12/sheepit.jpg" alt="sheepit SheepIt   Clone Form Elements Dynamically With jQuery" width="600" height="200" /></a></p>
<p>It has configuration options for cuztomization such as  limit the number of forms, form controls, number of initial forms, delete confirmation etc. SheepIt allow us to add multiple forms at the same time, remove the last one and remove all are some of the advanced controls that sheepIt provides.</p>
<p class="download"><strong>Requirements</strong>: jQuery Framework<br />
<strong>Demo</strong>: <a title="SheepIt" rel="nofollow" href="http://www.mdelrosso.com/sheepit/index.php?lng=en_GB&amp;sec=demos" target="_blank">http://www.mdelrosso.com/sheepit/index.php?lng=en_GB&amp;sec=demos</a><br />
<strong>License</strong>: MIT License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/jquery/sheepit-clone-form-dynamically/" title="jquery sheepit">jquery sheepit</a></li>
<li><a href="http://blogfreakz.com/jquery/sheepit-clone-form-dynamically/" title="jquery clone form">jquery clone form</a></li>
<li><a href="http://blogfreakz.com/jquery/sheepit-clone-form-dynamically/" title="SheepIt">SheepIt</a></li>
<li><a href="http://blogfreakz.com/jquery/sheepit-clone-form-dynamically/" title="jquery form clone">jquery form clone</a></li>
<li><a href="http://blogfreakz.com/jquery/sheepit-clone-form-dynamically/" title="jquery clone form elements">jquery clone form elements</a></li>
<li><a href="http://blogfreakz.com/jquery/sheepit-clone-form-dynamically/" title="sheepit jquery">sheepit jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/sheepit-clone-form-dynamically/" title="clone form elements">clone form elements</a></li>
<li><a href="http://blogfreakz.com/jquery/sheepit-clone-form-dynamically/" title="jquery clone form fields">jquery clone form fields</a></li>
<li><a href="http://blogfreakz.com/jquery/sheepit-clone-form-dynamically/" title="jquery cloneForm">jquery cloneForm</a></li>
<li><a href="http://blogfreakz.com/jquery/sheepit-clone-form-dynamically/" title="jquery dynamically add form elements">jquery dynamically add form elements</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/jquery/sheepit-clone-form-dynamically/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>h5Validate &#8211;  HTML5 Form Validation For jQuery</title>
		<link>http://blogfreakz.com/jquery/h5validate-html5-form-validation-for-jquery/</link>
		<comments>http://blogfreakz.com/jquery/h5validate-html5-form-validation-for-jquery/#comments</comments>
		<pubDate>Fri, 15 Oct 2010 15:04:52 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Forms]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[validation]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=11377</guid>
		<description><![CDATA[h5Validate is  jQuery plugin that understands HTML5 forms and knows how to validate them, even in browsers that don&#8217;t yet support HTML5. In browsers that do support HTML5, h5Validate adds some much-needed features, such as the ability to customize the user interface when an input fails validation. This HTML5 form validation is support for various [...]]]></description>
			<content:encoded><![CDATA[<p><a title="h5validate" rel="nofollow" href="http://ericleads.com/h5validate" target="_blank">h5Validate</a> is  jQuery plugin that understands HTML5 forms and knows how to validate them, even in browsers that don&#8217;t yet support HTML5. In browsers that do support HTML5, h5Validate adds some much-needed  features, such as the ability to customize the user interface when an  input fails validation.</p>
<p><span id="more-11377"></span></p>
<p><a rel="nofollow" href="http://ericleads.com/h5validate/"><img class="aligncenter size-full wp-image-11378" title="h5validate" src="http://blogfreakz.com/wp-content/uploads/2010/10/h5validate.jpg" alt="h5validate h5Validate    HTML5 Form Validation For jQuery" width="600" height="178" /></a></p>
<p>This <strong>HTML5 form validation </strong>is support for various validation rule such as required attribute and pattern attribute.  Sometimes, you&#8217;ll want to re-use the same validation pattern for several elements on a page.</p>
<p>You could copy and paste the same pattern over and over again to a bunch of different form fields. h5validate offer better solution which is to attach the pattern with a class selector. Use $.h5Validate.addPatterns() to add your pattern, make sure the class Prefix variable is set correctly (it&#8217;s h5- by default), and add the class to the input fields.</p>
<p>There are a <em>ton</em> of options you can override by passing key:  value pairs when you call .h5Validate(). For example, we can change the  CSS class that indicates validation errors.</p>
<p><strong>Requirements</strong>: jQuery framework<br />
<strong>Demo</strong>: <a title="h5validate" rel="nofollow" href="http://ericleads.com/h5validate/" target="_blank">http://ericleads.com/h5validate</a><br />
<strong>License</strong>: MIT License<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/jquery/h5validate-html5-form-validation-for-jquery/" title="h5validate">h5validate</a></li>
<li><a href="http://blogfreakz.com/jquery/h5validate-html5-form-validation-for-jquery/" title="jquery mobile form validation">jquery mobile form validation</a></li>
<li><a href="http://blogfreakz.com/jquery/h5validate-html5-form-validation-for-jquery/" title="html5 form validation">html5 form validation</a></li>
<li><a href="http://blogfreakz.com/jquery/h5validate-html5-form-validation-for-jquery/" title="jquery mobile validation">jquery mobile validation</a></li>
<li><a href="http://blogfreakz.com/jquery/h5validate-html5-form-validation-for-jquery/" title="jquery mobile contact form">jquery mobile contact form</a></li>
<li><a href="http://blogfreakz.com/jquery/h5validate-html5-form-validation-for-jquery/" title="html5 contact form">html5 contact form</a></li>
<li><a href="http://blogfreakz.com/jquery/h5validate-html5-form-validation-for-jquery/" title="h5validate example">h5validate example</a></li>
<li><a href="http://blogfreakz.com/jquery/h5validate-html5-form-validation-for-jquery/" title="jquery html5 form validation">jquery html5 form validation</a></li>
<li><a href="http://blogfreakz.com/jquery/h5validate-html5-form-validation-for-jquery/" title="jquery mobile validate form">jquery mobile validate form</a></li>
<li><a href="http://blogfreakz.com/jquery/h5validate-html5-form-validation-for-jquery/" title="jquery mobile validate">jquery mobile validate</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/jquery/h5validate-html5-form-validation-for-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

