<?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>jQuery Wisdom &#187; Forms</title>
	<atom:link href="http://www.jquery.wisdomplug.com/category/jquery-plugins/jquery-forms-plugins-jquery-plugins/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jquery.wisdomplug.com</link>
	<description>jQuery Resources Blog</description>
	<lastBuildDate>Sat, 13 Aug 2011 10:52:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>A Guide To Creating Forms In jQuery</title>
		<link>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/a-guide-to-creating-forms-in-jquery/</link>
		<comments>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/a-guide-to-creating-forms-in-jquery/#comments</comments>
		<pubDate>Sat, 23 Apr 2011 16:03:50 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Forms]]></category>

		<guid isPermaLink="false">http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/a-guide-to-creating-forms-in-jquery/</guid>
		<description><![CDATA[Forms are quintessential. Creating forms in jQuery revolves around the various elements that inturn build a form. This guide walks through the details of creating the various elements, text box, list, button, checkbox radio buttons and other elements with jQuery that will help you craft your forms in jQuery.<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-A-Guide-To-Creating-Forms-In-jQuery.png" />]]></description>
			<content:encoded><![CDATA[<p><br /></p><div><!-- Wordbooker created FB tags --> <fb:like layout="button_count" show_faces="false" send="false" action="recommend" font="arial" colorscheme="dark"  href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/a-guide-to-creating-forms-in-jquery/" width="250"></fb:like> <div style="float:right;"><!-- Wordbooker created FB tags --> <fb:share-button class="meta" type="button" href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/a-guide-to-creating-forms-in-jquery/" > </fb:share-button></div></div><br /> <br /><p><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-A-Guide-To-Creating-Forms-In-jQuery.png" /><br />Forms are quintessential. Creating forms in jQuery revolves around the various elements that inturn build a form. This guide walks through the details of creating the various elements, text box, list, button, checkbox radio buttons and other elements with jQuery that will help you craft your forms in jQuery.<BR><span id="more-2671"></span></p>
<p>
<h2><a href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/how-to-get-textbox-value-with-jquery-2/">1. How to get textbox value with jQuery</a></h2>
<p><script type="text/javascript"><!--
google_ad_client = "pub-9534545081248849";
/* Jquery */
google_ad_slot = "9018830443";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
A simple tutorial that explains how to fetch the text box value using jQuery. This will help in processing a jQuery form.<br />
<br />
To get the textbox value, you can use the jQuery val() function.<br />
<br />
For example,<br />
<br />
$(?input:textbox?).val() ? Get textbox value.<br />
$(?input:textbox?).val(?new text message?) ? Set the textbox value.</p>
<p><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-How-to-get-textbox-value-with-jQuery1.png" /></p>
<p><BR><br />
<h2><a href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/how-to-add-or-remove-textbox-dynamically-with-jquery/">2. How to add or remove textbox dynamically with jQuery</a></h2>
<p><script type="text/javascript"><!--
google_ad_client = "pub-9534545081248849";
/* Jquery */
google_ad_slot = "9018830443";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
At times when you want your form to be intuitive, you may want to populate your form with textboxes dynamically. In jQuery, it is quite easy to add or remove a textbox dynamically. The idea is quite simple, just combine the use of counter variable, jQuery createElement(), html() and remove() method.<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-How-to-add-or-remove-textbox-dynamically-with-jQuery.png" /></p>
<p><BR><br />
<h2><a href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-textbox-hinter-plugin/">3. JQuery Textbox Hinter Plugin</a></h2>
<p>3. JQuery Textbox Hinter Plugin<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-JQuery-Textbox-Hinter-Plugin.png" /></p>
<p><BR><br />
<h2><a href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-textbox-validation-and-the-blur-event/">4. jQuery Textbox Validation and the blur event</a></h2>
<p>Here is another jQuery tutorial demonstrating how to perform text validations using jQuerys blur() event.<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-jQuery-Textbox-Validation-and-the-blur-event.png" /></p>
<p><BR><br />
<h2><a href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-date-picker-plugin/">5. jQuery Date Picker Plugin</a></h2>
<p>The datePicker plugin is a popup calendar widget and then some. It allows you to add popup calendars to your forms to make it easier for users of your website to enter dates.<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-jQuery-Date-Picker-Plugin.png" /></p>
<p><BR><br />
<h2><a href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-date-method-validation/">6. jQuery date method &#8211; Validation</a></h2>
<p>This jQuery date() method, makes the element require a date. Return true, if the value is a valid date. Uses JavaScripts built-in Date to test if the date is valid, and does therefore no sanity checks. Only the format must be valid, not the actual date, eg 30/30/2008 is a valid date. Works with text inputs!<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-jQuery-date-method-Validation.png" /></p>
<p><BR><br />
<h2><a href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-ui-listbox/">7. jQuery-UI-Listbox</a></h2>
<p>jQuery UI Listbox is a jQuery UI Plugin which leverages the jquery ui menu control, styled with your existing jquery ui theme, features hover highlighting, click and double click.<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-jQuery-UI-Listbox.png" /></p>
<p><BR><br />
<h2><a href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jlistbox-jquery-plugin-for-formatted-select-box/">8. jListbox &#8211; jquery plugin for formatted select box</a></h2>
<p>jListbox is a jquery plugin to obtain a formatted select box.<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-jListbox-jquery-plugin-for-formatted-select-box.png" /></p>
<p><BR><br />
<h2><a href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/paging-listbox/">9. Paging-Listbox</a></h2>
<p>Paging-listbox is yet another jQuery plugin that allows to create a wonderful user interface in forms.<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-Paging-Listbox.png" /></p>
<p><BR><br />
<h2><a href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-checkbox-selector/">10. jQuery Checkbox Selector</a></h2>
<p>The jQuery Checkbox selector selects all elements of type checkbox. $( :checkbox ) is equivalent to $( [type=checkbox] ). As with other pseudo-class selectors (those that begin with a <img src='http://www.jquery.wisdomplug.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  it is recommended to precede it with a tag name or some other selector; otherwise, the universal selector (*) is implied. In other words, the bare $( :checkbox ) is equivalent to $( *:checkbox ), so $( input:checkbox ) should be used instead.<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-jQuery-Checkbox-Selector.png" /></p>
<p><BR><br />
<h2><a href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/how-to-check-and-uncheck-a-checkbox-with-jquery/">11. How to check and uncheck a checkbox with jQuery</a></h2>
<p>jQuery is a Javascript framework which can simplify coding Javascript for a website and removes a lot of cross browser compatibility issues. Yesterday I looked at how to get and set form element values with jQuery but did not deal with checkboxes. This post looks at how to tell if an HTML form checkbox is checked or not checked with jQuery and then how to change it to be un/checked.<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-How-to-check-and-uncheck-a-checkbox-with-jQuery.png" /></p>
<p><BR><br />
<h2><a href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-custom-styled-checkbox/">12. jQuery custom styled checkbox</a></h2>
<p>jQuery custom styled checkbox alows to create custom css styled checkboxes (and radio buttons, too). It is a replacement for the standard checkbox that allows you to change the look of checkbox elements in your page.<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-jQuery-custom-styled-checkbox.png" /></p>
<p><BR><br />
<h2><a href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-checkbox-manipulation/">13. jQuery &#8211; Checkbox manipulation</a></h2>
<p> jQuery &#8211; Checkbox manipulation provides you with various plugins for working with checkboxes.<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-jQuery-Checkbox-manipulation.png" /></p>
<p><BR><br />
<h2><a href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/how-to-tell-if-a-checkbox-is-checked-using-jquery/">14. How to tell if a checkbox is checked using jQuery</a></h2>
<p>A simple way to tell if a checkbox has been checked using jQuery.<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-How-to-tell-if-a-checkbox-is-checked-using-jQuery.png" /></p>
<p><BR><br />
<h2><a href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-radio-selector/">15. jQuery radio Selector</a></h2>
<p>The jQuery radio Selector selects all elements of type radio.<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-jQuery-radio-Selector.png" /></p>
<p><BR><br />
<h2><a href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-ui-radiobutton-and-checkbox-replacement/">16. jQuery UI Radiobutton and Checkbox-Replacement</a></h2>
<p>A classic radiobutton and checkbox for the web using jQuery UI.<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-jQuery-UI-Radiobutton-and-Checkbox-Replacement.png" /></p>
<p><BR><br />
<h2><a href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/how-to-select-a-radio-button-with-jquery/">17. How to select a radio button with jQuery</a></h2>
<p>A simple example to select a radio button with jQuery dynamically. This tutorial explains how to select a radio button with jQuery.<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-How-to-select-a-radio-button-with-jQuery.png" /></p>
<p><BR><br />
<h2><a href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-submit-selector/">18. jQuery Submit Selector</a></h2>
<p>The :submit selector selects all elements of type submit. The :submit selector typically applies to button or input elements. Note that some browsers treat &lt;button&gt; element as type=&#8221;default&#8221; implicitly while others (such as Internet Explorer) do not.</p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/a-guide-to-creating-forms-in-jquery/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>jQuery Submit Selector</title>
		<link>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-submit-selector/</link>
		<comments>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-submit-selector/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 05:05:55 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Forms]]></category>

		<guid isPermaLink="false">http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-submit-selector/</guid>
		<description><![CDATA[The :submit selector selects all elements of type submit. The :submit selector typically applies to button or input elements. Note that some browsers treat &#60;button&#62; element as type="default" implicitly while others (such as Internet Explorer) do not.]]></description>
			<content:encoded><![CDATA[<p><br /></p><div><!-- Wordbooker created FB tags --> <fb:like layout="button_count" show_faces="false" send="false" action="recommend" font="arial" colorscheme="dark"  href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-submit-selector/" width="250"></fb:like> <div style="float:right;"><!-- Wordbooker created FB tags --> <fb:share-button class="meta" type="button" href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-submit-selector/" > </fb:share-button></div></div><br /> <br /><p><script type="text/javascript"><!--
google_ad_client = "pub-9534545081248849";
/* Jquery */
google_ad_slot = "9018830443";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<br />The :submit selector selects all elements of type submit. The :submit selector typically applies to button or input elements. Note that some browsers treat &lt;button&gt; element as type=&#8221;default&#8221; implicitly while others (such as Internet Explorer) do not.<span id="more-2666"></span></p>
<div style="display:block;float:left;margin: 0px 10px 0px 0px;"><script type="text/javascript"><!--
google_ad_client = "pub-9534545081248849";
/* Jquery */
google_ad_slot = "9018830443";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<p><BR><img alt="jQuery Submit Selector" src="http://i35.tinypic.com/w8rjo1.jpg" /><a href = "http://api.jquery.com/submit-selector/"> Web Site</a><BR><img alt="jQuery Submit Selector" src="http://i34.tinypic.com/102q90m.jpg" /><a href = "http://api.jquery.com/submit-selector/"> Demo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-submit-selector/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to select a radio button with jQuery</title>
		<link>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/how-to-select-a-radio-button-with-jquery/</link>
		<comments>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/how-to-select-a-radio-button-with-jquery/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 05:05:54 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Forms]]></category>

		<guid isPermaLink="false">http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/how-to-select-a-radio-button-with-jquery/</guid>
		<description><![CDATA[A simple example to select a radio button with jQuery dynamically. This tutorial explains how to select a radio button with jQuery.<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-How-to-select-a-radio-button-with-jQuery.png" />]]></description>
			<content:encoded><![CDATA[<p><br /></p><div><!-- Wordbooker created FB tags --> <fb:like layout="button_count" show_faces="false" send="false" action="recommend" font="arial" colorscheme="dark"  href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/how-to-select-a-radio-button-with-jquery/" width="250"></fb:like> <div style="float:right;"><!-- Wordbooker created FB tags --> <fb:share-button class="meta" type="button" href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/how-to-select-a-radio-button-with-jquery/" > </fb:share-button></div></div><br /> <br /><p><script type="text/javascript"><!--
google_ad_client = "pub-9534545081248849";
/* Jquery */
google_ad_slot = "9018830443";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-How-to-select-a-radio-button-with-jQuery.png" /><br />A simple example to select a radio button with jQuery dynamically. This tutorial explains how to select a radio button with jQuery.<span id="more-2665"></span></p>
<div style="display:block;float:left;margin: 0px 10px 0px 0px;"><script type="text/javascript"><!--
google_ad_client = "pub-9534545081248849";
/* Jquery */
google_ad_slot = "9018830443";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<p><BR><img alt="How to select a radio button with jQuery" src="http://i35.tinypic.com/w8rjo1.jpg" /><a href = "http://www.mkyong.com/jquery/how-to-select-a-radio-button-with-jquery/"> Web Site</a><BR><img alt="How to select a radio button with jQuery" src="http://i34.tinypic.com/102q90m.jpg" /><a href = "http://www.mkyong.com/wp-content/uploads/jQuery/jQuery-select-radio-button.html"> Demo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/how-to-select-a-radio-button-with-jquery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>jQuery UI Radiobutton and Checkbox-Replacement</title>
		<link>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-ui-radiobutton-and-checkbox-replacement/</link>
		<comments>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-ui-radiobutton-and-checkbox-replacement/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 05:05:50 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Forms]]></category>

		<guid isPermaLink="false">http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-ui-radiobutton-and-checkbox-replacement/</guid>
		<description><![CDATA[A classic radiobutton and checkbox for the web using jQuery UI.<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-jQuery-UI-Radiobutton-and-Checkbox-Replacement.png" />]]></description>
			<content:encoded><![CDATA[<p><br /></p><div><!-- Wordbooker created FB tags --> <fb:like layout="button_count" show_faces="false" send="false" action="recommend" font="arial" colorscheme="dark"  href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-ui-radiobutton-and-checkbox-replacement/" width="250"></fb:like> <div style="float:right;"><!-- Wordbooker created FB tags --> <fb:share-button class="meta" type="button" href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-ui-radiobutton-and-checkbox-replacement/" > </fb:share-button></div></div><br /> <br /><p><script type="text/javascript"><!--
google_ad_client = "pub-9534545081248849";
/* Jquery */
google_ad_slot = "9018830443";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-jQuery-UI-Radiobutton-and-Checkbox-Replacement.png" /><br />A classic radiobutton and checkbox for the web using jQuery UI.<span id="more-2663"></span></p>
<div style="display:block;float:left;margin: 0px 10px 0px 0px;"><script type="text/javascript"><!--
google_ad_client = "pub-9534545081248849";
/* Jquery */
google_ad_slot = "9018830443";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<p><BR><img alt="jQuery UI Radiobutton and Checkbox-Replacement" src="http://i35.tinypic.com/w8rjo1.jpg" /><a href = "http://www.protofunc.com/scripts/jquery/checkbox-radiobutton/"> Web Site</a><BR><img alt="jQuery UI Radiobutton and Checkbox-Replacement" src="http://i34.tinypic.com/102q90m.jpg" /><a href = "http://www.protofunc.com/scripts/jquery/checkbox-radiobutton/"> Demo</a><BR><img alt="jQuery UI Radiobutton and Checkbox-Replacement" src="http://i36.tinypic.com/sd0epy.jpg" /><a href = "http://plugins.jquery.com/project/bind"> Download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-ui-radiobutton-and-checkbox-replacement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery radio Selector</title>
		<link>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-radio-selector/</link>
		<comments>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-radio-selector/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 05:05:47 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Forms]]></category>

		<guid isPermaLink="false">http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-radio-selector/</guid>
		<description><![CDATA[The jQuery radio Selector selects all elements of type radio.<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-jQuery-radio-Selector.png" />]]></description>
			<content:encoded><![CDATA[<p><br /></p><div><!-- Wordbooker created FB tags --> <fb:like layout="button_count" show_faces="false" send="false" action="recommend" font="arial" colorscheme="dark"  href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-radio-selector/" width="250"></fb:like> <div style="float:right;"><!-- Wordbooker created FB tags --> <fb:share-button class="meta" type="button" href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-radio-selector/" > </fb:share-button></div></div><br /> <br /><p><script type="text/javascript"><!--
google_ad_client = "pub-9534545081248849";
/* Jquery */
google_ad_slot = "9018830443";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-jQuery-radio-Selector.png" /><br />The jQuery radio Selector selects all elements of type radio.<span id="more-2661"></span></p>
<div style="display:block;float:left;margin: 0px 10px 0px 0px;"><script type="text/javascript"><!--
google_ad_client = "pub-9534545081248849";
/* Jquery */
google_ad_slot = "9018830443";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<p><BR><img alt="jQuery radio Selector" src="http://i35.tinypic.com/w8rjo1.jpg" /><a href = "http://api.jquery.com/radio-selector/"> Web Site</a><BR><img alt="jQuery radio Selector" src="http://i34.tinypic.com/102q90m.jpg" /><a href = "http://api.jquery.com/radio-selector/"> Demo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-radio-selector/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to tell if a checkbox is checked using jQuery</title>
		<link>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/how-to-tell-if-a-checkbox-is-checked-using-jquery/</link>
		<comments>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/how-to-tell-if-a-checkbox-is-checked-using-jquery/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 05:05:44 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Forms]]></category>

		<guid isPermaLink="false">http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/how-to-tell-if-a-checkbox-is-checked-using-jquery/</guid>
		<description><![CDATA[A simple way to tell if a checkbox has been checked using jQuery.<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-How-to-tell-if-a-checkbox-is-checked-using-jQuery.png" />]]></description>
			<content:encoded><![CDATA[<p><br /></p><div><!-- Wordbooker created FB tags --> <fb:like layout="button_count" show_faces="false" send="false" action="recommend" font="arial" colorscheme="dark"  href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/how-to-tell-if-a-checkbox-is-checked-using-jquery/" width="250"></fb:like> <div style="float:right;"><!-- Wordbooker created FB tags --> <fb:share-button class="meta" type="button" href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/how-to-tell-if-a-checkbox-is-checked-using-jquery/" > </fb:share-button></div></div><br /> <br /><p><script type="text/javascript"><!--
google_ad_client = "pub-9534545081248849";
/* Jquery */
google_ad_slot = "9018830443";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-How-to-tell-if-a-checkbox-is-checked-using-jQuery.png" /><br />A simple way to tell if a checkbox has been checked using jQuery is with the :checked CSS pseudo class. Your selector should use the following syntax:<br />
$(#edit-checkbox-id:checked)<span id="more-2659"></span></p>
<div style="display:block;float:left;margin: 0px 10px 0px 0px;"><script type="text/javascript"><!--
google_ad_client = "pub-9534545081248849";
/* Jquery */
google_ad_slot = "9018830443";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<p><BR><img alt="How to tell if a checkbox is checked using jQuery" src="http://i35.tinypic.com/w8rjo1.jpg" /><a href = "http://drupal.org/node/116548"> Web Site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/how-to-tell-if-a-checkbox-is-checked-using-jquery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>jQuery &#8211; Checkbox manipulation</title>
		<link>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-checkbox-manipulation/</link>
		<comments>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-checkbox-manipulation/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 05:05:41 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Forms]]></category>

		<guid isPermaLink="false">http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-checkbox-manipulation/</guid>
		<description><![CDATA[jQuery - Checkbox manipulation provides you with various plugins for working with checkboxes.<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-jQuery-Checkbox-manipulation.png" />]]></description>
			<content:encoded><![CDATA[<p><br /></p><div><!-- Wordbooker created FB tags --> <fb:like layout="button_count" show_faces="false" send="false" action="recommend" font="arial" colorscheme="dark"  href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-checkbox-manipulation/" width="250"></fb:like> <div style="float:right;"><!-- Wordbooker created FB tags --> <fb:share-button class="meta" type="button" href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-checkbox-manipulation/" > </fb:share-button></div></div><br /> <br /><p><script type="text/javascript"><!--
google_ad_client = "pub-9534545081248849";
/* Jquery */
google_ad_slot = "9018830443";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-jQuery-Checkbox-manipulation.png" /><br /> jQuery &#8211; Checkbox manipulation provides you with various plugins for working with checkboxes.<span id="more-2657"></span></p>
<div style="display:block;float:left;margin: 0px 10px 0px 0px;"><script type="text/javascript"><!--
google_ad_client = "pub-9534545081248849";
/* Jquery */
google_ad_slot = "9018830443";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<p><BR><img alt="jQuery - Checkbox manipulation" src="http://i35.tinypic.com/w8rjo1.jpg" /><a href = "http://www.texotela.co.uk/code/jquery/checkboxes/"> Web Site</a><BR><img alt="jQuery - Checkbox manipulation" src="http://i34.tinypic.com/102q90m.jpg" /><a href = "http://www.texotela.co.uk/code/jquery/checkboxes/"> Demo</a><BR><img alt="jQuery - Checkbox manipulation" src="http://i36.tinypic.com/sd0epy.jpg" /><a href = "https://github.com/SamWM/jQuery-Plugins"> Download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-checkbox-manipulation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery custom styled checkbox</title>
		<link>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-custom-styled-checkbox/</link>
		<comments>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-custom-styled-checkbox/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 05:05:37 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Forms]]></category>

		<guid isPermaLink="false">http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-custom-styled-checkbox/</guid>
		<description><![CDATA[jQuery custom styled checkbox alows to create custom css styled checkboxes (and radio buttons, too). It is a replacement for the standard checkbox that allows you to change the look of checkbox elements in your page.<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-jQuery-custom-styled-checkbox.png" />]]></description>
			<content:encoded><![CDATA[<p><br /></p><div><!-- Wordbooker created FB tags --> <fb:like layout="button_count" show_faces="false" send="false" action="recommend" font="arial" colorscheme="dark"  href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-custom-styled-checkbox/" width="250"></fb:like> <div style="float:right;"><!-- Wordbooker created FB tags --> <fb:share-button class="meta" type="button" href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-custom-styled-checkbox/" > </fb:share-button></div></div><br /> <br /><p><script type="text/javascript"><!--
google_ad_client = "pub-9534545081248849";
/* Jquery */
google_ad_slot = "9018830443";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-jQuery-custom-styled-checkbox.png" /><br />jQuery custom styled checkbox alows to create custom css styled checkboxes (and radio buttons, too). It is a replacement for the standard checkbox that allows you to change the look of checkbox elements in your page.<br />
Features:<br /><span id="more-2655"></span></p>
<ul>
<li>only inline elements used, just like default checkoxes </li>
<li>cross-browser look and feel (tested in IE6, IE7, IE8, Firefox and Chrome engines) </li>
<li>work with radio buttons too </li>
<li>supports inline and jQuery attached click events </li>
<li>supports &#8220;label hovering&#8221;: when you point over parent label element, it will highlight its checkbox (thanks to Eugene for the idea) </li>
<li>dynamic skin changing </li>
<li>adds new checkbox events &#8220;check&#8221;, &#8220;uncheck&#8221;, &#8220;disable&#8221;, &#8220;enable&#8221;, ready to use in jQuery.bind() method </li>
</ul>
<div style="display:block;float:left;margin: 0px 10px 0px 0px;"><script type="text/javascript"><!--
google_ad_client = "pub-9534545081248849";
/* Jquery */
google_ad_slot = "9018830443";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<p><BR><img alt="jQuery custom styled checkbox" src="http://i35.tinypic.com/w8rjo1.jpg" /><a href = "http://code.google.com/p/jquery-checkbox/"> Web Site</a><BR><img alt="jQuery custom styled checkbox" src="http://i34.tinypic.com/102q90m.jpg" /><a href = "http://widowmaker.kiev.ua/checkbox/"> Demo</a><BR><img alt="jQuery custom styled checkbox" src="http://i36.tinypic.com/sd0epy.jpg" /><a href = "http://code.google.com/p/jquery-checkbox/downloads/list"> Download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-custom-styled-checkbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to check and uncheck a checkbox with jQuery</title>
		<link>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/how-to-check-and-uncheck-a-checkbox-with-jquery/</link>
		<comments>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/how-to-check-and-uncheck-a-checkbox-with-jquery/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 05:05:34 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Forms]]></category>

		<guid isPermaLink="false">http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/how-to-check-and-uncheck-a-checkbox-with-jquery/</guid>
		<description><![CDATA[jQuery is a Javascript framework which can simplify coding Javascript for a website and removes a lot of cross browser compatibility issues. Yesterday I looked at how to get and set form element values with jQuery but did not deal with checkboxes. This post looks at how to tell if an HTML form checkbox is checked or not checked with jQuery and then how to change it to be un/checked.<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-How-to-check-and-uncheck-a-checkbox-with-jQuery.png" />]]></description>
			<content:encoded><![CDATA[<p><br /></p><div><!-- Wordbooker created FB tags --> <fb:like layout="button_count" show_faces="false" send="false" action="recommend" font="arial" colorscheme="dark"  href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/how-to-check-and-uncheck-a-checkbox-with-jquery/" width="250"></fb:like> <div style="float:right;"><!-- Wordbooker created FB tags --> <fb:share-button class="meta" type="button" href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/how-to-check-and-uncheck-a-checkbox-with-jquery/" > </fb:share-button></div></div><br /> <br /><p><script type="text/javascript"><!--
google_ad_client = "pub-9534545081248849";
/* Jquery */
google_ad_slot = "9018830443";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-How-to-check-and-uncheck-a-checkbox-with-jQuery.png" /><br />jQuery is a Javascript framework which can simplify coding Javascript for a website and removes a lot of cross browser compatibility issues. Yesterday I looked at how to get and set form element values with jQuery but did not deal with checkboxes. This post looks at how to tell if an HTML form checkbox is checked or not checked with jQuery and then how to change it to be un/checked.<span id="more-2653"></span></p>
<div style="display:block;float:left;margin: 0px 10px 0px 0px;"><script type="text/javascript"><!--
google_ad_client = "pub-9534545081248849";
/* Jquery */
google_ad_slot = "9018830443";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<p><BR><img alt="How to check and uncheck a checkbox with jQuery" src="http://i35.tinypic.com/w8rjo1.jpg" /><a href = "http://www.electrictoolbox.com/check-uncheck-checkbox-jquery/"> Web Site</a><BR><img alt="How to check and uncheck a checkbox with jQuery" src="http://i34.tinypic.com/102q90m.jpg" /><a href = "http://www.electrictoolbox.com/check-uncheck-checkbox-jquery/"> Demo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/how-to-check-and-uncheck-a-checkbox-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Checkbox Selector</title>
		<link>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-checkbox-selector/</link>
		<comments>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-checkbox-selector/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 05:05:29 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Forms]]></category>

		<guid isPermaLink="false">http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-checkbox-selector/</guid>
		<description><![CDATA[The jQuery Checkbox selector selects all elements of type checkbox. $( :checkbox ) is equivalent to $( [type=checkbox] ). As with other pseudo-class selectors (those that begin with a :) it is recommended to precede it with a tag name or some other selector; otherwise, the universal selector (*) is implied. In other words, the bare $( :checkbox ) is equivalent to $( *:checkbox ), so $( input:checkbox ) should be used instead.<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-jQuery-Checkbox-Selector.png" />]]></description>
			<content:encoded><![CDATA[<p><br /></p><div><!-- Wordbooker created FB tags --> <fb:like layout="button_count" show_faces="false" send="false" action="recommend" font="arial" colorscheme="dark"  href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-checkbox-selector/" width="250"></fb:like> <div style="float:right;"><!-- Wordbooker created FB tags --> <fb:share-button class="meta" type="button" href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-checkbox-selector/" > </fb:share-button></div></div><br /> <br /><p><script type="text/javascript"><!--
google_ad_client = "pub-9534545081248849";
/* Jquery */
google_ad_slot = "9018830443";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<br /><img src="http://wisdomplug.com/jquery/wp-content/uploads/wpid-jQuery-Checkbox-Selector.png" /><br />The jQuery Checkbox selector selects all elements of type checkbox. $( :checkbox ) is equivalent to $( [type=checkbox] ). As with other pseudo-class selectors (those that begin with a <img src='http://www.jquery.wisdomplug.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  it is recommended to precede it with a tag name or some other selector; otherwise, the universal selector (*) is implied. In other words, the bare $( :checkbox ) is equivalent to $( *:checkbox ), so $( input:checkbox ) should be used instead.<span id="more-2651"></span></p>
<div style="display:block;float:left;margin: 0px 10px 0px 0px;"><script type="text/javascript"><!--
google_ad_client = "pub-9534545081248849";
/* Jquery */
google_ad_slot = "9018830443";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<p><BR><img alt="jQuery Checkbox Selector" src="http://i35.tinypic.com/w8rjo1.jpg" /><a href = "http://api.jquery.com/checkbox-selector/"> Web Site</a><BR><img alt="jQuery Checkbox Selector" src="http://i34.tinypic.com/102q90m.jpg" /><a href = "http://api.jquery.com/checkbox-selector/"> Demo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jquery.wisdomplug.com/jquery-plugins/jquery-forms-plugins-jquery-plugins/jquery-checkbox-selector/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

