<?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>javascript snippets Archives - Belchamber Web Tools, AI Guidance &amp; Code</title>
	<atom:link href="https://tools.belchamber.us/tag/javascript-snippets/feed/" rel="self" type="application/rss+xml" />
	<link>https://tools.belchamber.us/tag/javascript-snippets/</link>
	<description>Aaron Belchamber: AI-Centric Senior Cloud Software Engineer - Jacksonville FL</description>
	<lastBuildDate>Fri, 25 Dec 2015 18:56:36 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
<site xmlns="com-wordpress:feed-additions:1">99928718</site>	<item>
		<title>Javascript: A simple way when validating forms to ensure at least one checkbox is checked</title>
		<link>https://tools.belchamber.us/validating-forms/</link>
					<comments>https://tools.belchamber.us/validating-forms/#respond</comments>
		
		<dc:creator><![CDATA[Aaron Belchamber]]></dc:creator>
		<pubDate>Sun, 27 Dec 2015 16:13:17 +0000</pubDate>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[form validation]]></category>
		<category><![CDATA[javascript snippets]]></category>
		<guid isPermaLink="false">https://tools.belchamber.us/?p=981</guid>

					<description><![CDATA[<p>Check so at least one checkbox on your form is checked before it&#8217;s allowed to submit: $("#main_form").on('submit',function(e){ if ( $("input[type='checkbox']:checked").length &#62; 0) { } else { e.preventDefault(); alert("Please check at least one list you wish to be included in."); return false; } return true; }); &#160;</p>
<p>The post <a href="https://tools.belchamber.us/validating-forms/">Javascript: A simple way when validating forms to ensure at least one checkbox is checked</a> appeared first on <a href="https://tools.belchamber.us">Belchamber Web Tools, AI Guidance &amp; Code</a>.</p>
]]></description>
		
					<wfw:commentRss>https://tools.belchamber.us/validating-forms/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">981</post-id>	</item>
		<item>
		<title>How to add more form fields and data to a serialized AJAX form in JQuery</title>
		<link>https://tools.belchamber.us/how-to-add-more-form-fields-and-data-to-a-serialized-ajax-form-in-jquery/</link>
					<comments>https://tools.belchamber.us/how-to-add-more-form-fields-and-data-to-a-serialized-ajax-form-in-jquery/#respond</comments>
		
		<dc:creator><![CDATA[Aaron Belchamber]]></dc:creator>
		<pubDate>Wed, 18 Mar 2015 01:46:45 +0000</pubDate>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[ajax form]]></category>
		<category><![CDATA[ajax tips]]></category>
		<category><![CDATA[javascript snippets]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[jquery tips]]></category>
		<guid isPermaLink="false">http://tools.belchamber.us/?p=748</guid>

					<description><![CDATA[<p>In a jQuery form post, here is how you add more data to the serialized form data.  This is useful if you find yourself needing to pass some extra data along with the AJAX post.  This is a barebones example of a blind AJAX post to a form handler script called &#8220;form_handler.php&#8221;. I find jQuery&#8217;s [&#8230;]</p>
<p>The post <a href="https://tools.belchamber.us/how-to-add-more-form-fields-and-data-to-a-serialized-ajax-form-in-jquery/">How to add more form fields and data to a serialized AJAX form in JQuery</a> appeared first on <a href="https://tools.belchamber.us">Belchamber Web Tools, AI Guidance &amp; Code</a>.</p>
]]></description>
		
					<wfw:commentRss>https://tools.belchamber.us/how-to-add-more-form-fields-and-data-to-a-serialized-ajax-form-in-jquery/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">748</post-id>	</item>
		<item>
		<title>Get date of last day of current month for special processing like for credit card expiration dates</title>
		<link>https://tools.belchamber.us/get-date-of-last-day-of-current-month-for-special-processing-like-for-credit-card-expiration-dates/</link>
					<comments>https://tools.belchamber.us/get-date-of-last-day-of-current-month-for-special-processing-like-for-credit-card-expiration-dates/#respond</comments>
		
		<dc:creator><![CDATA[Aaron Belchamber]]></dc:creator>
		<pubDate>Thu, 05 Mar 2015 04:21:53 +0000</pubDate>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[.js]]></category>
		<category><![CDATA[date object]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[javascript snippets]]></category>
		<guid isPermaLink="false">http://tools.belchamber.us/?p=714</guid>

					<description><![CDATA[<p>In case you ever need to manually validate those pesky multi-field credit card date fields, you know &#8220;Month&#8221; and &#8220;Year&#8221; and you want to make sure the expiration is never set prior to the current month for obvious reasons like the credit card would get declined, you need to have the browser client side figure [&#8230;]</p>
<p>The post <a href="https://tools.belchamber.us/get-date-of-last-day-of-current-month-for-special-processing-like-for-credit-card-expiration-dates/">Get date of last day of current month for special processing like for credit card expiration dates</a> appeared first on <a href="https://tools.belchamber.us">Belchamber Web Tools, AI Guidance &amp; Code</a>.</p>
]]></description>
		
					<wfw:commentRss>https://tools.belchamber.us/get-date-of-last-day-of-current-month-for-special-processing-like-for-credit-card-expiration-dates/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">714</post-id>	</item>
	</channel>
</rss>
