<?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/tag/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="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>
<li><a href="http://blogfreakz.com/tutorial/make-blinking-neon-forms-with-css3-and-jquery/" title="pulsate">pulsate</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>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 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>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="форма 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>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>
		<item>
		<title>Building An Emotional Connection With Your Audience Through Anthropomorphic Forms</title>
		<link>http://blogfreakz.com/news/building-an-emotional-connection-with-your-audience-through-anthropomorphic-forms/</link>
		<comments>http://blogfreakz.com/news/building-an-emotional-connection-with-your-audience-through-anthropomorphic-forms/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 01:53:37 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[anthropomorphism]]></category>
		<category><![CDATA[Forms]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/building-an-emotional-connection-with-your-audience-through-anthropomorphic-forms/</guid>
		<description><![CDATA[An anthropomorphic form is one that exhibits human-like qualities. As designers we can use this tendency to find anthropomorphic forms more appealing to attract attention to design elements, establish a positive frame or tone for our designs, and even build relationships and make emotional connections with our audience.]]></description>
			<content:encoded><![CDATA[<p>An anthropomorphic form is one that exhibits human-like qualities. As designers we can use this tendency to find anthropomorphic forms more appealing to attract attention to design elements, establish a positive frame or tone for our designs, and even build relationships and make emotional connections with our audience.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/building-an-emotional-connection-with-your-audience-through-anthropomorphic-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Live Form Validation- Easy Form Validations</title>
		<link>http://blogfreakz.com/jquery/jquery-live-form-validation/</link>
		<comments>http://blogfreakz.com/jquery/jquery-live-form-validation/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 16:55:27 +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=9267</guid>
		<description><![CDATA[jQuery Live Form Validation is a free jQuery plugin which helps create easy form validations with high flexibility and a large set of options. Features Supports custom validations Options to toggle between live and onsubmit validations Completely customizable CSS For advanced users, this plugin support this various options: expression: The javascript code which should have [...]]]></description>
			<content:encoded><![CDATA[<p><a title="jQuery Live Form Validation" rel="nofollow" href="http://www.geektantra.com/2009/09/jquery-live-form-validation/" target="_blank">jQuery Live Form Validation</a> is a free jQuery plugin which helps create <strong>easy form validations</strong> with high flexibility and a large set of options.</p>
<p><span id="more-9267"></span><br />
<a rel="nofollow" href="http://www.geektantra.com/projects/jquery-form-validate/"><img class="aligncenter size-full wp-image-9268" title="jQuery-Live-Form-Validation" src="http://blogfreakz.com/wp-content/uploads/2010/09/jQuery-Live-Form-Validation.jpg" alt="jQuery Live Form Validation jQuery Live Form Validation  Easy Form Validations " width="600" height="200" /></a></p>
<h3>Features</h3>
<ul>
<li>Supports custom validations</li>
<li>Options to toggle between live and onsubmit validations</li>
<li>Completely customizable CSS</li>
</ul>
<div>For advanced users, this plugin support this various options:</div>
<ul>
<li><strong>expression:</strong> The javascript code which should have two outputs<br />
or . The value of the field is given by . As this is a string escape characters for backslash and other non standard characters must be used. <em>(Default: return true;)</em></li>
<li><strong>message: </strong>The validation message for the field. <em>(Default: “”)</em></li>
<li><strong>error_class:</strong> The CSS class of the error message container. <em>(Default: “ValidationErrors”)</em></li>
<li><strong>error_field_class:</strong> The CSS class added to the field when found invalid. <em>(Default: “ErrorField”)</em></li>
<li><strong>live:</strong> Sets whether the validation of the field should be live or on form submit. <em>(Default: true)</em></li>
</ul>
<p class="download"><strong>Requirements</strong>: jQuery Framework<br />
<strong>Demo</strong>: <a title="jQuery Live Form Validation" rel="nofollow" href="http://www.geektantra.com/projects/jquery-form-validate/" target="_blank">http://www.geektantra.com/projects/jquery-form-validate/</a><br />
<strong>License</strong>: Apache License 2.0</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/jquery/jquery-live-form-validation/" title="JQUERY LIVE VALIDATION">JQUERY LIVE VALIDATION</a></li>
<li><a href="http://blogfreakz.com/jquery/jquery-live-form-validation/" title="jquery live form validation">jquery live form validation</a></li>
<li><a href="http://blogfreakz.com/jquery/jquery-live-form-validation/" title="jquery validations">jquery validations</a></li>
<li><a href="http://blogfreakz.com/jquery/jquery-live-form-validation/" title="live form validation">live form validation</a></li>
<li><a href="http://blogfreakz.com/jquery/jquery-live-form-validation/" title="jquery form validations">jquery form validations</a></li>
<li><a href="http://blogfreakz.com/jquery/jquery-live-form-validation/" title="jquery validation">jquery validation</a></li>
<li><a href="http://blogfreakz.com/jquery/jquery-live-form-validation/" title="cakephp jquery form validation">cakephp jquery form validation</a></li>
<li><a href="http://blogfreakz.com/jquery/jquery-live-form-validation/" title="live form validation jquery">live form validation jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/jquery-live-form-validation/" title="cakephp jquery validation">cakephp jquery validation</a></li>
<li><a href="http://blogfreakz.com/jquery/jquery-live-form-validation/" title="jquery live validation form">jquery live validation form</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/jquery/jquery-live-form-validation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

