<?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 Archives - Belchamber Web Tools, AI Guidance &amp; Code</title>
	<atom:link href="https://tools.belchamber.us/tag/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>https://tools.belchamber.us/tag/javascript/</link>
	<description>Aaron Belchamber: AI-Centric Senior Cloud Software Engineer - Jacksonville FL</description>
	<lastBuildDate>Sat, 12 Mar 2016 16:45: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>Latest Useful Web Resources and Links #1, March 2016</title>
		<link>https://tools.belchamber.us/latest-useful-web-resources-links-1-march-2016/</link>
					<comments>https://tools.belchamber.us/latest-useful-web-resources-links-1-march-2016/#respond</comments>
		
		<dc:creator><![CDATA[Aaron Belchamber]]></dc:creator>
		<pubDate>Sat, 12 Mar 2016 18:31:37 +0000</pubDate>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[symfony]]></category>
		<category><![CDATA[wamp]]></category>
		<guid isPermaLink="false">https://tools.belchamber.us/?p=1018</guid>

					<description><![CDATA[<p>I created this page as a running repository of useful, miscellaneous web notes for later reference. Javascript &#38; JQuery How to get the latest version of JQuery: alert('JQuery: '+$.fn.jquery); // Outputs JQuery: x.x.x Useful info about Javascript and JQuery source maps &#8212; an explanation about what they are and how they are used: http://elijahmanor.com/the-magic-of-the-jquery-1-9-source-map/ Parsley [&#8230;]</p>
<p>The post <a href="https://tools.belchamber.us/latest-useful-web-resources-links-1-march-2016/">Latest Useful Web Resources and Links #1, March 2016</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/latest-useful-web-resources-links-1-march-2016/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1018</post-id>	</item>
		<item>
		<title>JQuery Datepicker:  The quickest way to add hour and minute values to form&#8217;s date input field</title>
		<link>https://tools.belchamber.us/jquery-datepicker-the-quickest-way-to-add-hour-and-minute-values-to-forms-date-input-field/</link>
					<comments>https://tools.belchamber.us/jquery-datepicker-the-quickest-way-to-add-hour-and-minute-values-to-forms-date-input-field/#respond</comments>
		
		<dc:creator><![CDATA[Aaron Belchamber]]></dc:creator>
		<pubDate>Sat, 31 Oct 2015 13:51:57 +0000</pubDate>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<guid isPermaLink="false">http://tools.belchamber.us/?p=954</guid>

					<description><![CDATA[<p>The JQuery UI library&#8217;s Datepicker function is very convenient.  Here&#8217;s a way to override the date field if you want to allow the user to also input the time of day along with it without adding an extra field and deal with merging the values in the backend.  You can also add &#8220;+d.getSeconds()&#8221; if you [&#8230;]</p>
<p>The post <a href="https://tools.belchamber.us/jquery-datepicker-the-quickest-way-to-add-hour-and-minute-values-to-forms-date-input-field/">JQuery Datepicker:  The quickest way to add hour and minute values to form&#8217;s date input field</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/jquery-datepicker-the-quickest-way-to-add-hour-and-minute-values-to-forms-date-input-field/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">954</post-id>	</item>
		<item>
		<title>Validating forms with JQuery Validation: Ensuring at least one checkbox is checked</title>
		<link>https://tools.belchamber.us/validating-forms-with-jquery-validation-ensuring-at-least-one-checkbox-is-checked/</link>
					<comments>https://tools.belchamber.us/validating-forms-with-jquery-validation-ensuring-at-least-one-checkbox-is-checked/#respond</comments>
		
		<dc:creator><![CDATA[Aaron Belchamber]]></dc:creator>
		<pubDate>Sat, 17 Oct 2015 19:46:51 +0000</pubDate>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<guid isPermaLink="false">http://tools.belchamber.us/?p=951</guid>

					<description><![CDATA[<p>On occasion, you&#8217;re going to have some mammoth form that doesn&#8217;t validate properly with any Javascript validation library.   One event is when the form you are given to deploy has a lot of checkboxes and one of those checkboxes needs to be checked to be valid.  The easiest way to make sure this happens is [&#8230;]</p>
<p>The post <a href="https://tools.belchamber.us/validating-forms-with-jquery-validation-ensuring-at-least-one-checkbox-is-checked/">Validating forms with JQuery Validation: Ensuring 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-with-jquery-validation-ensuring-at-least-one-checkbox-is-checked/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">951</post-id>	</item>
		<item>
		<title>Get the image width and height of an image file at a remote URL in Javascript</title>
		<link>https://tools.belchamber.us/get-the-image-width-and-height-of-an-image-file-at-a-remote-url-in-javascript/</link>
					<comments>https://tools.belchamber.us/get-the-image-width-and-height-of-an-image-file-at-a-remote-url-in-javascript/#respond</comments>
		
		<dc:creator><![CDATA[Aaron Belchamber]]></dc:creator>
		<pubDate>Mon, 14 Sep 2015 12:03:43 +0000</pubDate>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Javascript tips]]></category>
		<guid isPermaLink="false">http://tools.belchamber.us/?p=925</guid>

					<description><![CDATA[<p>Here&#8217;s how you can get the image width and height of an image file at a remote URL. function getImgDims(url){ var img = new Image(); img.onload = function(){ var rtnArr=Array; rtnArr['width']=this.width; rtnArr['height']=this.height; return rtnArr; }; } This will return an a multi-element associative array containing values under &#8220;width&#8221; and &#8220;height&#8221; as its keys.</p>
<p>The post <a href="https://tools.belchamber.us/get-the-image-width-and-height-of-an-image-file-at-a-remote-url-in-javascript/">Get the image width and height of an image file at a remote URL in Javascript</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-the-image-width-and-height-of-an-image-file-at-a-remote-url-in-javascript/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">925</post-id>	</item>
		<item>
		<title>Google Chrome&#8217;s form autocomplete feature &#8212; shutting it off to avoid UI chaos for complex forms</title>
		<link>https://tools.belchamber.us/google-chromes-form-autocomplete-feature-shutting-it-off-to-avoid-ui-chaos-for-complex-forms/</link>
					<comments>https://tools.belchamber.us/google-chromes-form-autocomplete-feature-shutting-it-off-to-avoid-ui-chaos-for-complex-forms/#respond</comments>
		
		<dc:creator><![CDATA[Aaron Belchamber]]></dc:creator>
		<pubDate>Sun, 07 Jun 2015 17:50:29 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[javascript]]></category>
		<guid isPermaLink="false">http://tools.belchamber.us/?p=836</guid>

					<description><![CDATA[<p>All browsers have their idiosyncrasies &#8212; Internet Explorer had so many Microsoft is changing its name. Here&#8217;s another one of a hundred browser &#8220;idiot syncrasies&#8221; that wasted so much time.  I&#8217;ve always developed sites first for Firefox then Chrome then found I had to add more hacks on top for IE, the infamous &#8220;shiv&#8221; code [&#8230;]</p>
<p>The post <a href="https://tools.belchamber.us/google-chromes-form-autocomplete-feature-shutting-it-off-to-avoid-ui-chaos-for-complex-forms/">Google Chrome&#8217;s form autocomplete feature &#8212; shutting it off to avoid UI chaos for complex forms</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/google-chromes-form-autocomplete-feature-shutting-it-off-to-avoid-ui-chaos-for-complex-forms/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">836</post-id>	</item>
		<item>
		<title>Adding datepicker widget to Infusionsoft forms and what&#8217;s up with their primitive forms?!</title>
		<link>https://tools.belchamber.us/adding-datepicker-widget-to-infusionsoft-forms-and-whats-up-with-their-primitive-forms/</link>
					<comments>https://tools.belchamber.us/adding-datepicker-widget-to-infusionsoft-forms-and-whats-up-with-their-primitive-forms/#respond</comments>
		
		<dc:creator><![CDATA[Aaron Belchamber]]></dc:creator>
		<pubDate>Fri, 29 May 2015 01:48:18 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[CRMs]]></category>
		<category><![CDATA[Infusionsoft]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[infusionsoft]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://tools.belchamber.us/?p=831</guid>

					<description><![CDATA[<p>Love Infusionsoft or hate it, if you are stuck using it, you want to be able to deploy useful forms with fields that optimize your visitors&#8217; UX.  If you are collecting date information, Infusionsoft forms don&#8217;t export the code with any built-in AJAX functionality.  None. Someone made a conscious decision there to do the bare [&#8230;]</p>
<p>The post <a href="https://tools.belchamber.us/adding-datepicker-widget-to-infusionsoft-forms-and-whats-up-with-their-primitive-forms/">Adding datepicker widget to Infusionsoft forms and what&#8217;s up with their primitive forms?!</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/adding-datepicker-widget-to-infusionsoft-forms-and-whats-up-with-their-primitive-forms/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">831</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>
