<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>Making It Up As I Go Along - jQuery</title>
			<link>http://www.miuaiga.com/index.cfm</link>
			<description></description>
			<language>en-us</language>
			<pubDate>Sun, 05 Sep 2010 13:04:31 -0600</pubDate>
			<lastBuildDate>Sun, 30 May 2010 18:37:00 -0600</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>michael@miuaiga.com</managingEditor>
			<webMaster>michael@miuaiga.com</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>michael@miuaiga.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			<itunes:image href="" />
			<image>
				<url></url>
				<title>Making It Up As I Go Along</title>
				<link>http://www.miuaiga.com/index.cfm</link>
			</image>
			<itunes:explicit>no</itunes:explicit>
			
			<item>
				<title>jQuery AJAX get() function cached in IE</title>
				<link>http://www.miuaiga.com/index.cfm/2010/5/30/jQuery-AJAX-get-function-cached-in-IE</link>
				<description>
				
				&lt;p&gt;From the &apos;how the heck were we supposed to know this?&apos; department, a little tidbit I&apos;d like to share, perhaps saving some poor, frustrated developer from the same type of mystifying madness:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;jQuery &quot;get()&quot; operations are cached in IE unless you pass in a unique URL !&lt;br /&gt;&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;By cached, I mean, you can have a remote page with a query or other function, which responds to a unique set of values being passed in, and it will work fine in Firefox, but in IE, you&apos;ll get the same results from the remote page, even if the response is unique (like query results that have changed, for the same record), unless the values you are passing in via get()  are also unique (i.e. you haven&apos;t looked up that particular record yet).&lt;/p&gt;
&lt;p&gt;So, before you go banging your head on the floor and screaming out &apos;why oh why can&apos;t i find the problem, let alone the solution?!?&apos; (not that i would ever do that), read this post, which i found via a quick Google search for &apos;jquery get IE cache&apos; : &lt;a href=&quot;http://www.sitecrafting.com/blog/ajax-ie-caching-issues/&quot; target=&quot;_blank&quot;&gt;http://www.sitecrafting.com/blog/ajax-ie-caching-issues/&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I only had the presence of mind to run that search once i got my ajax results to display as an alert on the calling page, and deduced that the displayed content was based on the first values passed in, while all other updates and requests were ignored.&lt;/p&gt;
&lt;p&gt;The fix, as that post suggests, is to create a unique url. In this case, i use javascript to append a random number to my function, - in this case, I just use javascript to create a random number right inline, then add that as a meaningles url variable to the page in the get() function:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; // set up unique url&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; var randomNo = Math.floor(Math.random()*9999999);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; var urlStr = &apos;journalLookup.cfm?r=&apos; + randomNo;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; // run get function using randomized URL&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $.get(&lt;strong&gt;urlStr&lt;/strong&gt;,{jdate:dateLookup}, function(data){&amp;nbsp; .... [ function here ]&lt;/p&gt;
&lt;p&gt;If this saves you some aggravation, let me know in the comments ... maybe i&apos;ll feel better about the time i just wasted chasing this mystery &apos;feature&apos; in IE!!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt; 
				</description>
				
				<category>Javascript</category>				
				
				<category>jQuery</category>				
				
				<pubDate>Sun, 30 May 2010 18:37:00 -0600</pubDate>
				<guid>http://www.miuaiga.com/index.cfm/2010/5/30/jQuery-AJAX-get-function-cached-in-IE</guid>
				
			</item>
			
			<item>
				<title>How to show changed input and select fields with jQuery</title>
				<link>http://www.miuaiga.com/index.cfm/2009/12/10/How-to-show-changed-input-and-select-fields-with-jQuery</link>
				<description>
				
				Here are a few quick easy jquery functions that will add a class of &apos;changed&apos; to any input or select box if it is changed, and will remove that class if the value is reset to the default. 

&lt;code&gt;

		// inputs
		$(&apos;form.myForm :input&apos;).change(function(){
		var defval = $(this)[0].defaultValue;
		if ($(this).val()!=defval){
			$(this).addClass(&apos;changed&apos;);
		} else {
		 	$(this).removeClass(&apos;changed&apos;);
		}
		}).keyup(function(){
		 	$(this).trigger(&apos;change&apos;);
		});

		// select boxes
		$(&apos;form.myForm select&apos;).change(function(){
		var defval = $(this).find(&apos;option[defaultSelected=true]&apos;).val();
		if ($(this).val()!=defval){
			$(this).addClass(&apos;changed&apos;);
		} else {
		 	$(this).removeClass(&apos;changed&apos;);
		}
		}).keyup(function(){
		 	$(this).trigger(&apos;change&apos;);
		});

&lt;/code&gt;

Note in both cases we use keyup (onkeyup) to trigger the &apos;change&apos; event. This allows the browser to show the changed class as soon as the user changes the value using a keyboard, rather than &apos;onblur&apos;. 
				</description>
				
				<category>Javascript</category>				
				
				<category>jQuery</category>				
				
				<category>WebDev</category>				
				
				<pubDate>Thu, 10 Dec 2009 04:16:00 -0600</pubDate>
				<guid>http://www.miuaiga.com/index.cfm/2009/12/10/How-to-show-changed-input-and-select-fields-with-jQuery</guid>
				
			</item>
			
			<item>
				<title>jQuery Cycle slideshow demo with next/back/paging links</title>
				<link>http://www.miuaiga.com/index.cfm/2009/10/29/jQuery-Cycle-slideshow-demo-with-nextbackpaging-links</link>
				<description>
				
				This demo uses some of the advanced features of the jQuery Cycle plugin to create a mixed content slideshow (html/text/images) with a visual navigation bar, and next/back arrows

In this setup, the slideshow advances automatically, until somebody clicks one of the links, which stops the automatic action and allows the user to control the advancement of the slides. The Cycle plugin allows for pausing, resuming or stopping the slideshow with a simple click action. 

See the demo (includes css/jquery code for easy reuse)
&lt;a href=&quot;http://www.gowestwebdesign.com/demos/jquery-cycle-gallery-next-back-paging/&quot;&gt;http://www.gowestwebdesign.com/demos/jquery-cycle-gallery-next-back-paging/&lt;/a&gt;

Thanks to Mike Alsup for the versatile Cycle plugin: &lt;a href=&quot;http://www.malsup.com/jquery/cycle/&quot;&gt;http://www.malsup.com/jquery/cycle/&lt;/a&gt;

Feel free to use the code for any purpose, and please drop me a comment or link to check out your work. As always, comments/suggestions/fixes are welcome. 
				</description>
				
				<category>Javascript</category>				
				
				<category>jQuery</category>				
				
				<category>Demos</category>				
				
				<category>WebDev</category>				
				
				<pubDate>Thu, 29 Oct 2009 11:53:00 -0600</pubDate>
				<guid>http://www.miuaiga.com/index.cfm/2009/10/29/jQuery-Cycle-slideshow-demo-with-nextbackpaging-links</guid>
				
			</item>
			
			<item>
				<title>jQuery form input defaultValue</title>
				<link>http://www.miuaiga.com/index.cfm/2009/8/31/jQuery-form-input-defaultValue</link>
				<description>
				
				When creating a form to accept user info, there are times when functions related to a form input&apos;s default value are required.
For example, you have a field that says &quot;search here&quot;, and when the user clicks in the field, the default value is removed so the user can begin typing. But, if the user leaves the field blank, you might want that default term to return.
 
In regular javascript, we use something like this:
&lt;code&gt;
 if(inputName.value == &apos;&apos;){
inputName.value = inputName.defaultValue
};
&lt;/code&gt;

but jQuery doesn&apos;t have a built-in method for retrieving that default value. Thankfully, google found me a super easy workaround - &lt;a href=&quot;http://www.nabble.com/put-the-value-back-in-the-input-%28Beginner%29-td15502268s27240.html&quot;&gt;this discussion thread&lt;/a&gt; holds the key:

&lt;code&gt;
 if ($(this).val() == &quot;&quot;) {
                  var defVal = $(this)[0].defaultValue; 
                  $(this).val(defVal);
                } 

&lt;/code&gt;

Note the [0] in the defaultValue. As explained in the thread linked above: &quot;If you imagine $(this) as an array of DOM objects within jQuery, then $(this)[0] is a way to access the first (or in this case, only) DOM object.  jQuery doesn&apos;t have a built in way to retrieve the default value of an input, so we have to nip back into the DOM momentarily in order to retrieve it. &quot; 
				</description>
				
				<category>jQuery</category>				
				
				<pubDate>Mon, 31 Aug 2009 23:19:00 -0600</pubDate>
				<guid>http://www.miuaiga.com/index.cfm/2009/8/31/jQuery-form-input-defaultValue</guid>
				
			</item>
			
			<item>
				<title>Marking current menu link with jQuery for CartWeaver categories</title>
				<link>http://www.miuaiga.com/index.cfm/2009/8/19/Marking-current-menu-link-with-jQuery-for-CartWeaver-categories</link>
				<description>
				
				Working on a heavily-modified &lt;a href=&quot;http://www.cartweaver.com&quot;&gt;Cartweaver Coldfusion E-Commerce&lt;/a&gt; shopping cart site, I have created a database-driven navigation menu containing links to each category. When a user clicks a link, the products in that category are displayed, and the menu link for that category is highlighted via a special &apos;currentLink&apos; css class.

Now of course I could use CF to add &apos; class=&quot;currentLink&quot; &apos; to the current category&apos;s menu option, but I am not doing this particular menu that way. Besides, it is just as easy with jQuery! 

&lt;code&gt;

&lt;cfif cgi.script_name contains &apos;results.cfm&apos; AND isDefined(&apos;url.category&apos;) and url.category gt 0&gt;
&lt;cfsavecontent variable=&quot;highlight&quot;&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
$(document).ready(function(){
$(&apos;.sideNav li a&apos;).removeClass(&apos;currentLink&apos;);
$(&apos;.sideNav li a[href=results.cfm?category=&lt;cfoutput&gt;#url.category#&lt;/cfoutput&gt;]&apos;).addClass(&apos;currentLink&apos;);
//end jQuery
});
&lt;/script&gt;
&lt;/cfsavecontent&gt;
&lt;cfhtmlhead text=&quot;#highlight#&quot;&gt;
&lt;/cfif&gt;

&lt;/code&gt;


Simple enough - if we are on the &apos;results&apos; page, and a category is defined in the url, remove the &apos;currentLink&apos; class from all existing menu items, find the one where the &apos;href&apos; attribute matches the current pagename and category, and add the class back to that link. Done.

The use of cfsavecontent and cfhtmlhead means I can put this right below the code that calls in my custom nav tag, for easy fine-tuning right where i need it (rather than in an external scripts file). 

Quick , easy, and done in a flash with jQuery! 
				</description>
				
				<category>ColdFusion</category>				
				
				<category>jQuery</category>				
				
				<category>Cartweaver</category>				
				
				<category>WebDev</category>				
				
				<pubDate>Wed, 19 Aug 2009 17:15:00 -0600</pubDate>
				<guid>http://www.miuaiga.com/index.cfm/2009/8/19/Marking-current-menu-link-with-jQuery-for-CartWeaver-categories</guid>
				
			</item>
			
			<item>
				<title>TwitterFeed and Tweet.js - feed your blog to Twitter, and your Twitter feed to any page</title>
				<link>http://www.miuaiga.com/index.cfm/2009/8/9/TwitterFeed-and-Tweetjs--feed-your-blog-to-Twitter-and-your-Twitter-feed-to-any-page</link>
				<description>
				
				&lt;p&gt;Two fun, free tools for blog/Twitter syndication combo:&lt;/p&gt;
&lt;p&gt;1) &lt;a href=&quot;http://www.twitterfeed.com&quot;&gt;www.twitterfeed.com&lt;/a&gt; : enter any Blog Rss feed url and twitterfeed will automatically post your blog entries to your twitter account&lt;/p&gt;
&lt;p&gt;2) &lt;a href=&quot;http://tweet.seaofclouds.com/&quot;&gt;tweet.js&lt;/a&gt; : light, fast jQuery powered Twitter feed display - easy to configure options and show your Twitter posts on any page you choose&lt;/p&gt;
&lt;p&gt;See both in action in the sidebar, here: &lt;a href=&quot;http://www.gowestweb.com&quot;&gt;www.gowestweb.com&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Anything I post on this blog gets added to my &apos;gowestweb&apos; twitter feed, which is shown on the GoWest site using tweet.js&lt;/p&gt; 
				</description>
				
				<category>Tools &amp;amp; Tips</category>				
				
				<category>BlogCFC</category>				
				
				<category>jQuery</category>				
				
				<category>WebDev</category>				
				
				<pubDate>Sun, 09 Aug 2009 16:32:00 -0600</pubDate>
				<guid>http://www.miuaiga.com/index.cfm/2009/8/9/TwitterFeed-and-Tweetjs--feed-your-blog-to-Twitter-and-your-Twitter-feed-to-any-page</guid>
				
			</item>
			
			<item>
				<title>Replace missing images sitewide with jQuery and ColdFusion</title>
				<link>http://www.miuaiga.com/index.cfm/2009/7/8/Replace-missing-images-sitewide-with-jQuery-and-ColdFusion</link>
				<description>
				
				In my application.cfc, within the &apos;onRequestStart&apos; function, I have a variable defined for the replacement image to use in my site.

&lt;cfset request.missingImage = &quot;img/blank.gif&quot;&gt;

Then, in an include that puts special goodies into the head of every generated html page sitewide, I have this bit of cf code

&lt;code&gt;

&lt;!--- missing img src ---&gt;
&lt;cfif fileExists(expandPath(request.missingImage))&gt;
	&lt;cfset imgErrorSrc = &apos;#request.thisdir##request.missingImage#&apos;&gt;
&lt;cfelse&gt;
	&lt;cfset imgErrorSrc = &apos;&apos;&gt;
&lt;/cfif&gt;

&lt;/code&gt;

This checks to make sure the &apos;error&apos; image actually exists - if not, we just use a blank &apos;&apos; value.
 
(Note: request.thisDir is my own global variable that references the root of the site - you can replace that with any hardcoded or dynamic url)

Then, write a simple function to replace any images - this duplicates a similar usage of the &lt;img&gt; tag&apos;s &apos;onerror&apos; attribute ( which is fine for images in non-strict doctypes, but is not entirely valid ).

&lt;code&gt;

&lt;!--- replace all missing images with replacement image, or with empty src ---&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
$(document).ready(function(){
	$(&apos;body img&apos;).error(function(){
		$(this).attr(&apos;src&apos;, &apos;&lt;cfoutput&gt;#imgErrorSrc#&lt;/cfoutput&gt;&apos;).attr(&apos;alt&apos;,&apos;&apos;);
	});
});
&lt;/script&gt;
&lt;/code&gt;

That&apos;s it. 
Also notice I am clearing the &apos;alt&apos; attribute as a final precaution. Using this method, any missing image anywhere within the html &lt;body&gt; will simply be &apos;blanked out&apos;.

I could use jQuery&apos;s .remove() function, to remove a missing image completely from the DOM, but there are times when I want the space or layout to be preserved, and really, I don&apos;t want errant images in my pages at all, so this gives me a way to debug if I find my self (inevitably) scratching my head when a missing image simply &apos;vanishes&apos; from the page 4 or 5 sites from now.

As a final note, the CF part of this, setting the value for the &apos;src&apos; attribute, can be enhanced to include different images for different pages, or under different conditions. Likewise, the jQuery function could be expanded to target images in one location with a specific action, and in another with a separate function by using different css selectors.

Just another example of how Jquery + CF = bliss :-) 
				</description>
				
				<category>Javascript</category>				
				
				<category>ColdFusion</category>				
				
				<category>jQuery</category>				
				
				<category>WebDev</category>				
				
				<pubDate>Wed, 08 Jul 2009 00:03:00 -0600</pubDate>
				<guid>http://www.miuaiga.com/index.cfm/2009/7/8/Replace-missing-images-sitewide-with-jQuery-and-ColdFusion</guid>
				
			</item>
			
			<item>
				<title>Remove missing images (and parent elements) using jQuery</title>
				<link>http://www.miuaiga.com/index.cfm/2009/6/23/Remove-missing-images-and-parent-elements-using-jQuery</link>
				<description>
				
				&lt;p&gt;My client has an auto dealership site where inventory images are pulled remotely, i.e. &apos;hotlinked&apos;, from the inventory service&apos;s website. The client asked me to create a slideshow of inventory images on the home page - no problem using jQuery cycle() plugin - but there&apos;s one hangup: some of the images don&apos;t exist!&amp;nbsp; Easy enough to remove the images ( &amp;lt;img onerror=&quot;this.style.display = &apos;none&apos;&quot;&amp;gt; ) , but these images are dynamically linked, and contained in an unordered list. So, even if I remove the errant images with an inline attribute, I still have this empty &apos;a&apos; and &apos;li&apos; hanging around.&lt;/p&gt;
&lt;p&gt;Using a single line of jQuery code, I whipped up this super-quick solution:&lt;/p&gt;
&lt;p&gt;&amp;lt;script type=&quot;text/javascript&quot;&amp;gt;&lt;br /&gt;$(document).ready(function(){&lt;/p&gt;
&lt;p&gt;// find all missing images&lt;br /&gt;$(&apos;#slideshowWrap img&apos;).error(function(){&lt;/p&gt;
&lt;p&gt;// hide the image, then remove the parent element from the DOM&lt;br /&gt;$(this).hide().parents(&apos;a&apos;).parents(&apos;li&apos;).remove();&lt;/p&gt;
&lt;p&gt;// uncomment line below to see the script at work&lt;br /&gt;//alert(&apos;hidden: &apos; + $(this).attr(&apos;src&apos;));&lt;/p&gt;
&lt;p&gt;});&lt;/p&gt;
&lt;p&gt;// end jquery&lt;br /&gt;});&lt;br /&gt;&amp;lt;/script&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;The parents(&apos;a&apos;) could become parents(&apos;p&apos;) or whatever is needed to get rid of the containing element.&lt;/p&gt;
&lt;p&gt;Maybe the &apos;hide()&apos; combined with &apos;remove()&apos; is redundant.... but I like it.&lt;/p&gt;
&lt;p&gt;That &apos;alert&apos; line, if uncommented, will alert you to the src of each missing image for testing.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; 
				</description>
				
				<category>Javascript</category>				
				
				<category>jQuery</category>				
				
				<category>WebDev</category>				
				
				<pubDate>Tue, 23 Jun 2009 16:04:00 -0600</pubDate>
				<guid>http://www.miuaiga.com/index.cfm/2009/6/23/Remove-missing-images-and-parent-elements-using-jQuery</guid>
				
			</item>
			
			<item>
				<title>jQuery validate() plugin, IE6, simple solution</title>
				<link>http://www.miuaiga.com/index.cfm/2009/6/2/jQuery-validate-plugin-IE6-simple-solution</link>
				<description>
				
				&lt;p&gt;I have been using the jQuery validate plugin for just about every form I&apos;ve created in the past year or more. Easy, robust, beautiful stuff by world-class jQuery coder J&amp;ouml;rn Zaefferer ( &lt;a href=&quot;http://bassistance.de/jquery-plugins/jquery-plugin-validation/&quot;&gt;plugin page&lt;/a&gt; ) ... if you haven&apos;t checked it out yet, please do!&lt;/p&gt;
&lt;p&gt;Anyway, tonight I had (yet another) strange thing happen in IE6 - basically, nothing was happening. The form i was working on was able to submit in IE6 as if javascript was disabled - no errors, no message, nothing. As usual, everything was fine in Firefox (firebug) and IE7, and I was stumped as only IE6 can stump me... then, thanks to Google, I found this thread:&lt;a href=&quot;http://groups.google.com/group/jquery-en/browse_thread/thread/843bc94ffef99250&quot;&gt; http://groups.google.com/group/jquery-en/browse_thread/thread/843bc94ffef99250&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Apparently there is something in the packed version of the validation file (jquery.validate.pack.js) that IE6 does not like. The solution? Don&apos;t use the packed version! Takes up a little more bandwidth but at least it works in all browsers.&lt;br /&gt;&lt;br /&gt;Now - how much longer do we have to keep caring about IE6? (In this case, the offending browser is on the client&apos;s computer, so I have to play nice as much as possible...)&lt;/p&gt; 
				</description>
				
				<category>Javascript</category>				
				
				<category>jQuery</category>				
				
				<category>WebDev</category>				
				
				<pubDate>Tue, 02 Jun 2009 23:39:00 -0600</pubDate>
				<guid>http://www.miuaiga.com/index.cfm/2009/6/2/jQuery-validate-plugin-IE6-simple-solution</guid>
				
			</item>
			
			<item>
				<title>CF Gallery Creator &amp; jQuery Slider Gallery !New and Improved!</title>
				<link>http://www.miuaiga.com/index.cfm/2009/4/11/CF-Gallery-Creator--jQuery-Slider-Gallery-New-and-Improved</link>
				<description>
				
				&lt;p&gt;Still a work in progress, I have fixed a few small things and added better setup notes for the &lt;a href=&quot;../index.cfm/2008/10/11/CF-Gallery-Creator--jQuery-Slider-Gallery&quot;&gt;CF Gallery Creator and jQuery Slider Gallery&lt;/a&gt; (click for explanation in previous post)&lt;/p&gt;
&lt;p&gt;The new code is available as a zip file, attached ** see below **&lt;/p&gt;
&lt;p&gt;This package contains&lt;/p&gt;
&lt;p&gt;1) a custom ColdFusion image gallery generator, which will create thumbnails and large images of any size you specify from a folder containing your original images, and outputs them to the page in a nice unordered list html markup.&lt;/p&gt;
&lt;p&gt;Includes options for multiple subfolders, each one a separate &apos;gallery&apos; with thumbnail or dropdown navigation.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;2) a simply but effective &apos;slider gallery&apos; built on css and jQuery. Example here:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.gowestweb.com/cfdev/_tags/gallery/slidergallery.cfm?gallery=some-gallery-name&quot; target=&quot;_blank&quot;&gt;http://www.gowestweb.com/cfdev/_tags/gallery/slidergallery.cfm?gallery=some-gallery-name&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;( Without the jQuery and css, the raw markup from the CF tag alone looks like this&lt;a href=&quot;http://www.gowestweb.com/cfdev/_tags/gallery/gallerypage.cfm?gallery=some-gallery-name&quot; target=&quot;_blank&quot;&gt;&lt;br /&gt;http://www.gowestweb.com/cfdev/_tags/gallery/gallerypage.cfm?gallery=some-gallery-name&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;As usual this was built to meet a specific need for a client project and has been tweaked and adjusted along the way.&lt;/p&gt;
&lt;p&gt;Please DO try it out, and let me know if/when you use it. &lt;br /&gt;Comments, enhancements and suggestions welcome!&lt;/p&gt; 
				</description>
				
				<category>CF Tags</category>				
				
				<category>Javascript</category>				
				
				<category>ColdFusion</category>				
				
				<category>jQuery</category>				
				
				<category>Demos</category>				
				
				<pubDate>Sat, 11 Apr 2009 20:57:00 -0600</pubDate>
				<guid>http://www.miuaiga.com/index.cfm/2009/4/11/CF-Gallery-Creator--jQuery-Slider-Gallery-New-and-Improved</guid>
				
				<enclosure url="http://www.miuaiga.com/enclosures/miuaigaCF-galleryjQuery-slider.zip" length="32331" type="application/zip"/>
				
			</item>
			
			<item>
				<title>Some alternatives to Adobe NNTP Newsgroups</title>
				<link>http://www.miuaiga.com/index.cfm/2009/4/3/Some-alternatives-to-Adobe-NNTP-Newsgroups</link>
				<description>
				
				&lt;p&gt;As many dedicated web developers mourn the passing of the NNTP interface for Adobe&apos;s support forums ( formerly nntp://forums.adobe.com ), I&apos;d like to extend a hearty welcome, inviting all web developers, friends and interested cohorts to join myself and a number of other seasoned web professionals in some popular NNTP-friendly alternative hangouts.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://miuaiga.com/page.cfm/Web-Developer-Newsgroups&quot; target=&quot;_self&quot;&gt;http://www.miuaiga.com/page.cfm/Web-Developer-Newsgroups&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;In addition to general web developer newsgroups, there are some specialized groups for ColdFusion, javascript (ok, mostly jQuery), all three flavors of CartWeaver (E-commerce) and more.&lt;/p&gt;
&lt;p&gt;Every one of the newsgroups listed on the page above is happy to welcome new and interesting contributors, the more the merrier. You may even discover some old friends among the archived threads.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;NOTE: If you are not currently using NNTP to interact with other web-folks online, you&apos;ve been missing out! I recommend Mozilla Thunderbird, and an account at each one of the places listed. See you there!&lt;br /&gt;&lt;br /&gt;---&lt;br /&gt;&lt;br /&gt;In regards to the big switch, the Adobe Dreamweaver support forum says this: &lt;br /&gt;&lt;br /&gt;ANNOUNCEMENT: Forums will be unavailable for planned system maintenance &lt;br /&gt;starting at 3pm PST on April 3, 2009. New forums will be online on &lt;br /&gt;Monday April 6, 2009.&lt;/p&gt;
&lt;p&gt;( currently April 3, 1:35 Pacific time ... T-minus 90 minutes )&lt;/p&gt; 
				</description>
				
				<category>Javascript</category>				
				
				<category>ColdFusion</category>				
				
				<category>Tools &amp;amp; Tips</category>				
				
				<category>jQuery</category>				
				
				<category>Cartweaver</category>				
				
				<category>WebDev</category>				
				
				<pubDate>Fri, 03 Apr 2009 16:32:00 -0600</pubDate>
				<guid>http://www.miuaiga.com/index.cfm/2009/4/3/Some-alternatives-to-Adobe-NNTP-Newsgroups</guid>
				
			</item>
			
			<item>
				<title>jQuery noSpam email address protector now works with euro domains! (two dots)</title>
				<link>http://www.miuaiga.com/index.cfm/2009/3/20/jQuery-noSpam-email-address-protector-now-works-with-euro-domains-two-dots</link>
				<description>
				
				&lt;p&gt;Need to show an email address on the web? &lt;br /&gt;You have a few options:&lt;/p&gt;
&lt;p&gt;1) create a standard &quot;mailto:&quot; link and enjoy an endless flow of vi@gR&amp;amp;! ads and invitiations for massive funds transfers from far away lands&lt;/p&gt;
&lt;p&gt;2) use an email obfuscator! &lt;br /&gt;&lt;br /&gt;My favorite email address obfuscator by far is the jQuery &lt;a href=&quot;http://www.leftrightdesigns.com/library/jquery/nospam/&quot;&gt;noSpam&lt;/a&gt; plugin by Mike Branski.&lt;br /&gt;This jQuery plugin turns an obfuscated e-mail address into a human-readable one.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Now supports multiple dots (.) both before and after the at (@) sign!&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;While the simplicity and smoothness of this little script has always been top-notch, it has just been made even better by allowing the use of euro-style domains, such as &quot; user@domain.co.uk &quot; in addition to standard &apos;single dot&apos; extensions. &lt;br /&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;To use this plugin, include &lt;a href=&quot;http://www.leftrightdesigns.com/library/jquery/nospam/jquery.nospam.js&quot;&gt;jquery.nospam.js&lt;/a&gt; and call the nospam() method. No Spam automatically detects if your matched element is a link. If so, it checks the rel attributes for the obfuscated e-mail addresses. For all other elements, it uses the text between the matched tags.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Examples and further instructions are at &lt;a href=&quot;http://www.leftrightdesigns.com/library/jquery/nospam/&quot;&gt;http://www.leftrightdesigns.com/library/jquery/nospam/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt; 
				</description>
				
				<category>Javascript</category>				
				
				<category>jQuery</category>				
				
				<category>WebDev</category>				
				
				<pubDate>Fri, 20 Mar 2009 12:07:00 -0600</pubDate>
				<guid>http://www.miuaiga.com/index.cfm/2009/3/20/jQuery-noSpam-email-address-protector-now-works-with-euro-domains-two-dots</guid>
				
			</item>
			
			<item>
				<title>jQuery : find empty select boxes (or selects with a specific value)</title>
				<link>http://www.miuaiga.com/index.cfm/2009/2/12/jQuery--find-empty-select-boxes-or-selects-with-a-specific-value</link>
				<description>
				
				&lt;p&gt;Another super short jQuery solution to a super long late-night quest on my part.&lt;br /&gt;&lt;br /&gt;I have a form with a variable number of select boxes. Before the form can be submitted, I need to verify that there are no selections left unchanged.&lt;/p&gt;
&lt;p&gt;The select boxes start out with a default value of &apos;&apos;&amp;nbsp; (empty quotes). To search for them , i was using all sorts of variations on jquery &apos;val()&apos;, but that is more useful for setting a value than finding a select with a value. After a few various connotations... here&apos;s the one that works:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;var valCt = $(&apos;select.colorselect[value=&quot;&quot;]&apos;).size();&lt;/p&gt;
&lt;p&gt;This finds all selects with the class of &apos;colorselect&apos; and the value of &apos;&apos;, and returns the size, which in jQuery talk means &apos;how many&apos;. If I have 3 unchanged select boxes, valCt will equal &apos;3&apos;. &lt;br /&gt;&lt;br /&gt;From there it is an easy hop to add a check to the submit action of my form, checking to make sure valCt is 0.&lt;/p&gt;
&lt;p&gt;if (!(valCt == 0)) { &lt;br /&gt;return false &lt;br /&gt;} else [ ... submit form here ... ]&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; 
				</description>
				
				<category>Javascript</category>				
				
				<category>jQuery</category>				
				
				<pubDate>Thu, 12 Feb 2009 01:37:00 -0600</pubDate>
				<guid>http://www.miuaiga.com/index.cfm/2009/2/12/jQuery--find-empty-select-boxes-or-selects-with-a-specific-value</guid>
				
			</item>
			
			<item>
				<title>Mobile jQuery Cheat Sheet</title>
				<link>http://www.miuaiga.com/index.cfm/2009/1/11/Mobile-jQuery-Cheat-Sheet</link>
				<description>
				
				&lt;p&gt;&lt;a href=&quot;http://colorcharge.com/jquery/&quot; target=&quot;_blank&quot;&gt;http://colorcharge.com/jquery/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;made for iPhone/iTouch but works great on my blackberry in Opera mobile. Unlike most of the things I bookmark on my mobile, I can actually see using this one.&lt;br /&gt;&lt;br /&gt;here&apos;s the actual URL, click this link in your mobile browser:&lt;br /&gt;&lt;a href=&quot;http://labs.colorcharge.com/jtouch/&quot; target=&quot;_blank&quot;&gt;http://labs.colorcharge.com/jtouch/&lt;/a&gt;&lt;/p&gt; 
				</description>
				
				<category>Javascript</category>				
				
				<category>BlackBerry</category>				
				
				<category>Tools &amp;amp; Tips</category>				
				
				<category>jQuery</category>				
				
				<category>WebDev</category>				
				
				<pubDate>Sun, 11 Jan 2009 02:13:00 -0600</pubDate>
				<guid>http://www.miuaiga.com/index.cfm/2009/1/11/Mobile-jQuery-Cheat-Sheet</guid>
				
			</item>
			
			<item>
				<title>jQuery in Action 2008 Best Seller (no surprise!)</title>
				<link>http://www.miuaiga.com/index.cfm/2009/1/7/jQuery-in-Action-2008-Best-Seller-no-surprise</link>
				<description>
				
				&lt;p&gt;Manning Publications&apos; &lt;a href=&quot;../index.cfm/2008/1/30/New-jQuery-Book-jQuery-in-Action&quot;&gt;&lt;em&gt;jQuery in Action&lt;/em&gt;&lt;/a&gt; is &lt;em&gt;the&lt;/em&gt; book to have if you want to learn jQuery, or if you&apos;re a somewhat-jQ-ninja-in-training-ish , and you want to unlock more hidden gems of jQuery wisdom.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;../index.cfm/2008/1/30/New-jQuery-Book-jQuery-in-Action&quot;&gt;I grabbed my copy in advance&lt;/a&gt; of the release date last year, and have worn out some of the best pages already.&amp;nbsp; No surprise to me, Manning just announced that &lt;em&gt;jQuery in Action&lt;/em&gt; was their 2008 best seller!&lt;/p&gt;
&lt;p&gt;Incidentally , they are running a hefty discount on this and any other titles , for another week or so.&lt;/p&gt;
&lt;p&gt;(from the same email announcing the best seller list, in just now... )&lt;/p&gt;
&lt;p&gt;Save 31% on any purchase at Manning.com&lt;br /&gt;Enter coupon code ja1331 when you check out&lt;br /&gt;$20 minimum purchase; expires January 13, 2009 &lt;br /&gt;&lt;/p&gt; 
				</description>
				
				<category>Javascript</category>				
				
				<category>Tools &amp;amp; Tips</category>				
				
				<category>jQuery</category>				
				
				<pubDate>Wed, 07 Jan 2009 16:12:00 -0600</pubDate>
				<guid>http://www.miuaiga.com/index.cfm/2009/1/7/jQuery-in-Action-2008-Best-Seller-no-surprise</guid>
				
			</item>
			</channel></rss>