<?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.com &#187; Forms</title>
	<atom:link href="http://blogfreakz.com/category/form/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogfreakz.com</link>
	<description>Web Development, Web Trends, open source resources</description>
	<lastBuildDate>Fri, 10 Feb 2012 05:40:03 +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>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="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="NEON BORDER">NEON BORDER</a></li>
<li><a href="http://blogfreakz.com/tutorial/make-blinking-neon-forms-with-css3-and-jquery/" title="$(input inputbox) focus">$(input inputbox) focus</a></li>
<li><a href="http://blogfreakz.com/tutorial/make-blinking-neon-forms-with-css3-and-jquery/" title="jquery pulsate">jquery pulsate</a></li>
<li><a href="http://blogfreakz.com/tutorial/make-blinking-neon-forms-with-css3-and-jquery/" title="jquery pulsate box-shadow">jquery pulsate box-shadow</a></li>
<li><a href="http://blogfreakz.com/tutorial/make-blinking-neon-forms-with-css3-and-jquery/" title="jquery pulsate textarea border">jquery pulsate textarea border</a></li>
<li><a href="http://blogfreakz.com/tutorial/make-blinking-neon-forms-with-css3-and-jquery/" title="menu neon jquery">menu neon jquery</a></li>
<li><a href="http://blogfreakz.com/tutorial/make-blinking-neon-forms-with-css3-and-jquery/" title="neon backgrounds jquery">neon backgrounds jquery</a></li>
<li><a href="http://blogfreakz.com/tutorial/make-blinking-neon-forms-with-css3-and-jquery/" title="neon buttons jquery">neon buttons jquery</a></li>
<li><a href="http://blogfreakz.com/tutorial/make-blinking-neon-forms-with-css3-and-jquery/" title="neon effect on div border with css">neon effect on div border with css</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>1</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="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 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="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="jquery captcha net">jquery captcha net</a></li>
<li><a href="http://blogfreakz.com/web-design/9-highly-useful-form-validation-jquery-plugins/" title="form field focus">form field focus</a></li>
<li><a href="http://blogfreakz.com/web-design/9-highly-useful-form-validation-jquery-plugins/" title="order form javascript code">order form javascript code</a></li>
<li><a href="http://blogfreakz.com/web-design/9-highly-useful-form-validation-jquery-plugins/" title="jquery validation inline">jquery validation inline</a></li>
<li><a href="http://blogfreakz.com/web-design/9-highly-useful-form-validation-jquery-plugins/" title="framework css form jquery">framework css form 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="valid jquery">valid jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/valid8-feature-rich-form-validation-plugin-for-jquery/" title="jquery css3 form validation">jquery css3 form validation</a></li>
<li><a href="http://blogfreakz.com/jquery/valid8-feature-rich-form-validation-plugin-for-jquery/" title="validate input jquery">validate input jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/valid8-feature-rich-form-validation-plugin-for-jquery/" title="js login form validation light">js login form validation light</a></li>
<li><a href="http://blogfreakz.com/jquery/valid8-feature-rich-form-validation-plugin-for-jquery/" title="valid8 examples">valid8 examples</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="valid8">valid8</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 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="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="web gui kit">web gui kit</a></li>
<li><a href="http://blogfreakz.com/form/snow-%e2%80%93-a-slick-and-modern-web-ui-kit/" title="gui perfect">gui perfect</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>
<li><a href="http://blogfreakz.com/form/snow-%e2%80%93-a-slick-and-modern-web-ui-kit/" title="snow background UI">snow background UI</a></li>
<li><a href="http://blogfreakz.com/form/snow-%e2%80%93-a-slick-and-modern-web-ui-kit/" title="snow modern ui kit">snow modern ui kit</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="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 form">jquery form</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="jformer cakephp">jformer cakephp</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="jquery framework">jquery framework</a></li>
<li><a href="http://blogfreakz.com/jquery/jformer-jquery-form-framework/" title="jformer framework review">jformer framework review</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="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>
<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 textareaCounter plugin">jquery textareaCounter 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>
		<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="форма html5">форма html5</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 web forms type">html5 web forms type</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 new form">html5 new form</a></li>
<li><a href="http://blogfreakz.com/form/html5-form/" title="html5 forms example">html5 forms example</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 dynamically add form elements">jquery dynamically add form elements</a></li>
<li><a href="http://blogfreakz.com/jquery/sheepit-clone-form-dynamically/" title="jquery form cloning">jquery form cloning</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>Vanadium &#8211; Simple Yet Powerful Client Side Validation</title>
		<link>http://blogfreakz.com/jquery/vanadium-simple-yet-powerfull-client-side-validation/</link>
		<comments>http://blogfreakz.com/jquery/vanadium-simple-yet-powerfull-client-side-validation/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 12:04:37 +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=13224</guid>
		<description><![CDATA[Vanadium is JavaScript validation toolkit that makes client-side validation easy. Validation rules are applied to HTML elements by adding special markup classes. E.g. adding ‘:required’ to element’s classes. Vanadium makes the element being validated against provided value. Instead of markup, one can use external definition provided as json structure. It is Ajax enabled in that [...]]]></description>
			<content:encoded><![CDATA[<p><a title="vanadiumjs" rel="nofollow" href="http://vanadiumjs.com/" target="_blank">Vanadium</a> is <strong>JavaScript validation</strong> toolkit that makes client-side validation easy. Validation rules are applied to HTML elements by adding special markup classes. E.g. adding ‘:required’ to element’s classes. Vanadium makes the element being validated against provided value. Instead of markup, one can use external definition provided as json structure. It is Ajax enabled in that sense one can declare particular field being validated by the result of the server response.</p>
<p><span id="more-13224"></span></p>
<p><a rel="nofollow" href="http://vanadiumjs.com/"><img class="alignnone size-full wp-image-13226" title="vanadium" src="http://blogfreakz.com/wp-content/uploads/2010/12/vanadium.jpg" alt="vanadium Vanadium   Simple Yet Powerful Client Side Validation" width="600" height="200" /></a></p>
<p>E.g. adding ‘:ajax;/path_on_serve/user_exists.json’ to element’s classes will cause any change to value of that element being sent to server as request. The response is expected to be json structure in the form of: {success: (true/false), [message: (MESSAGE_TEXT)], [advice_id: (ID_OF_THE_HTML_ELEMENT_USED_FOR_INJECTING_THE_MESSAGE)]}.</p>
<p>Vanadium is compatible with JQuery 1.3.2 (will be using other JS toolkits as well soon) and have been tested in: Firefox 3.5 (PC/Mac), Safari 2 (Mac), IE 6+, Opera 9 (PC/Mac).</p>
<p class="download"><strong>Requirements</strong>: jQuery Framework<br />
<strong>Demo</strong>: <a title="vanadiumjs" rel="nofollow" href="http://vanadiumjs.com/" target="_blank">http://vanadiumjs.com</a><br />
<strong>License</strong>: Free License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/jquery/vanadium-simple-yet-powerfull-client-side-validation/" title="vanadium jquery">vanadium jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/vanadium-simple-yet-powerfull-client-side-validation/" title="vanadium json">vanadium json</a></li>
<li><a href="http://blogfreakz.com/jquery/vanadium-simple-yet-powerfull-client-side-validation/" title="jquery vanadium">jquery vanadium</a></li>
<li><a href="http://blogfreakz.com/jquery/vanadium-simple-yet-powerfull-client-side-validation/" title="valadium">valadium</a></li>
<li><a href="http://blogfreakz.com/jquery/vanadium-simple-yet-powerfull-client-side-validation/" title="vanadium element">vanadium element</a></li>
<li><a href="http://blogfreakz.com/jquery/vanadium-simple-yet-powerfull-client-side-validation/" title="vanadium">vanadium</a></li>
<li><a href="http://blogfreakz.com/jquery/vanadium-simple-yet-powerfull-client-side-validation/" title="vanadium validation">vanadium validation</a></li>
<li><a href="http://blogfreakz.com/jquery/vanadium-simple-yet-powerfull-client-side-validation/" title="vanadium jquery mode use">vanadium jquery mode use</a></li>
<li><a href="http://blogfreakz.com/jquery/vanadium-simple-yet-powerfull-client-side-validation/" title="vanadium jquery lostfocus">vanadium jquery lostfocus</a></li>
<li><a href="http://blogfreakz.com/jquery/vanadium-simple-yet-powerfull-client-side-validation/" title="vanadium if required jquery">vanadium if required jquery</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/jquery/vanadium-simple-yet-powerfull-client-side-validation/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="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="jquerymobile form validation">jquerymobile form validation</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>

