<?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>Casual Rumblings - Web20</title>
			<link>http://www.christopherchin.com/blog/index.cfm</link>
			<description>This is personal blog of a Coldfusion programmer but not limited to just geek stuff.</description>
			<language>en-us</language>
			<pubDate>Wed, 08 Sep 2010 02:17:38 -0700</pubDate>
			<lastBuildDate>Mon, 24 May 2010 17:27:00 -0700</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>chris@christopherchin.com</managingEditor>
			<webMaster>chris@christopherchin.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>chris@christopherchin.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			<itunes:image href="" />
			<image>
				<url></url>
				<title>Casual Rumblings</title>
				<link>http://www.christopherchin.com/blog/index.cfm</link>
			</image>
			<itunes:explicit>no</itunes:explicit>
			
			<item>
				<title>Coldfusion Meetup: &quot;SEO and ColdFusion&quot; - May 27, 2010</title>
				<link>http://www.christopherchin.com/blog/index.cfm/2010/5/24/Coldfusion-Meetup-SEO-and-ColdFusion--May-27-2010</link>
				<description>
				
				&lt;h1&gt;&quot;Search Engine Optimization for the ColdFusion Developer&quot;&lt;/h1&gt;
&lt;p&gt;
TOPIC DESCRIPTION: (provided by the speaker)
In today&apos;s world, the bulk of our traffic to the websites we create comes from search engines. And with the exception of failed business models burning through VC money, more traffic equals more money.
But few developers bother to do even basic search engine optimization, which can dramatically improve their websites performance on Google and the like. The good news is that the basics of SEO is relatively easy to do, especially inside of most CFML applications. We&apos;ll go over the fundamentals of SEO and how you can easily integrate these principals into your application. We&apos;ll also discuss some free programs you can use to track your progress, and some other techniques to keep you in Google&apos;s good graces.
&lt;/p&gt;
&lt;p&gt;
MEETING URL: &lt;a href=&quot;http://experts.acrobat.com/cfmeetup/&quot; target=&quot;_blank&quot;&gt;http://experts.acrobat.com/cfmeetup/&lt;/a&gt;
&lt;br&gt;&lt;br&gt;
DURATION: Approx. 1 hour&lt;br&gt;&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;h2&gt;SPEAKER: Jeff Gladnick&lt;/h2&gt;

Jeff Gladnick lives in San Francisco, CA and has been a ColdFusion developer for over 10 years, since version 4.5. He&apos;s developed web applications for a variety of companies including the Produce Marketing Association, Dun &amp; Bradstreet, The Gap, and Adobe. He particularly likes Model Glue as a framework, and also owns &lt;a href=&quot;http://www.greatdentalwebsites.com&quot; target=&quot;_blank&quot;&gt;http://www.greatdentalwebsites.com&lt;/a&gt;, a company that allows dentists to create their own website (using a model-glue application).
&lt;/p&gt;

&lt;p&gt;
WHEN: Thurs. May 27, 12:00pm US ET (UTC/GMT-4)
&lt;br&gt;&lt;br&gt;
RECORDING: As always, the meeting will be recorded, and the recording URL will be posted after the meeting at &lt;a href=&quot;http://recordings.coldfusionmeetup.com&quot; target=&quot;_blank&quot;&gt;http://recordings.coldfusionmeetup.com&lt;/a&gt;.
&lt;/p&gt; 
				</description>
				
				<category>Technology</category>				
				
				<category>Web20</category>				
				
				<category>Adobe</category>				
				
				<category>Coldfusion</category>				
				
				<pubDate>Mon, 24 May 2010 17:27:00 -0700</pubDate>
				<guid>http://www.christopherchin.com/blog/index.cfm/2010/5/24/Coldfusion-Meetup-SEO-and-ColdFusion--May-27-2010</guid>
				
			</item>
			
			<item>
				<title>HELP: CFC+jquery+JSON</title>
				<link>http://www.christopherchin.com/blog/index.cfm/2010/3/25/HELP-CFCjqueryJSON</link>
				<description>
				
				&lt;p&gt;
Ok, I&apos;ve been at this for a couple of hours now.  I thought I was on the right track, but it looks like I&apos;m still a bit lost :(
&lt;br&gt;&lt;br&gt;
I have a modal login form using jquery and colorbox plugin.
&lt;/p&gt;
&lt;p&gt;
Here is a snippet of my jquery ajax call:
&lt;code&gt;
$j.ajax({
  url: &apos;cfc/security.cfc?method=login&apos;,
  data: datastring,
  dataType: &apos;json&apos;,
  success: function(data) {
  	var response = eval(data);
	console.log(response.MESSAGE);
    $j(&apos;.ajaxMsg&apos;).css({&quot;display&quot;:&quot;block&quot;}).html(data);
    $j.fn.colorbox.resize();
  }
});
&lt;/code&gt;
&lt;br&gt;
When calling this CFC from a URL using the correct parameters, I get this:
&lt;code&gt;{&quot;MESSAGE&quot;:&quot;Verified! Logging in...&quot;,&quot;FNAME&quot;:&quot;John&quot;,&quot;LNAME&quot;:&quot;Smith&quot;,&quot;VALID&quot;:true}
&lt;/code&gt;
This is exactly what I want.
&lt;/p&gt;
&lt;p&gt;
However, when running the ajax call above I get:
&lt;br&gt;
&lt;code&gt;
&lt;wddxPacket version=&apos;1.0&apos;&gt;&lt;header/&gt;&lt;data&gt;&lt;string&gt;{&quot;MESSAGE&quot;:&quot;Verified! Logging in....&quot;,&quot;FNAME&quot;:&quot;John&quot;,&quot;LNAME&quot;:&quot;Smith&quot;,&quot;VALID&quot;:true}&lt;/string&gt;&lt;/data&gt;&lt;/wddxPacket&gt;
&lt;/code&gt;
&lt;br&gt;
&lt;br&gt;
And this is screwing me up.
&lt;/p&gt;
&lt;p&gt;
Here is my CFC snippet:
&lt;code&gt;
&lt;CFFUNCTION name=&quot;login&quot; access=&quot;remote&quot; returntype=&quot;string&quot; output=&quot;false&quot;&gt;
    &lt;cfargument name=&quot;username&quot; type=&quot;string&quot; required=&quot;Yes&quot;&gt;
    &lt;cfargument name=&quot;password&quot; type=&quot;string&quot; required=&quot;Yes&quot;&gt;
    &lt;cfargument name=&quot;stayLogged&quot; type=&quot;string&quot; required=&quot;no&quot; default=&quot;no&quot;&gt;
	
    &lt;CFSET myReturn = {}&gt;
    .... sql statements ...
    if valid
    &lt;cfset myReturn.valid = &quot;true&quot;&gt;
    &lt;cfset myReturn.fname = #getLogin.fname#&gt;
    &lt;cfset myReturn.lname = #getLogin.lname#&gt;
    &lt;cfset myReturn.message = &quot;Verified! Logging in....&quot;&gt;
    
    if invalid
    &lt;cfset myReturn.valid = &quot;false&quot;&gt;
    &lt;cfset myReturn.fname = &quot;&quot;&gt;
    &lt;cfset myReturn.lname = &quot;&quot;&gt;
    &lt;cfset myReturn.message = &quot;Unverified! Please try signing in again.&quot;&gt;

    &lt;cfset myReturn = serializeJSON(myReturn)&gt;
	
    &lt;cfreturn myReturn&gt;
&lt;/cffunction&gt;
&lt;/code&gt;
&lt;/p&gt;
&lt;p&gt;
Ok...what am I doing wrong? :(
&lt;/p&gt; 
				</description>
				
				<category>Ajax</category>				
				
				<category>Web20</category>				
				
				<category>Coldfusion</category>				
				
				<category>jQuery</category>				
				
				<pubDate>Thu, 25 Mar 2010 13:48:00 -0700</pubDate>
				<guid>http://www.christopherchin.com/blog/index.cfm/2010/3/25/HELP-CFCjqueryJSON</guid>
				
			</item>
			
			<item>
				<title>Why does IE suck so #$(*# much!?  Great error message!</title>
				<link>http://www.christopherchin.com/blog/index.cfm/2010/3/3/Why-does-IE-suck-so--much--Great-error-message</link>
				<description>
				
				&lt;img src=&quot;http://www.christopherchin.com/blog/images//blog_images/IE-error.gif&quot;&gt;
&lt;br&gt;&lt;br&gt;
Now if only I can find line #131,265,925 I&apos;d be able to fix it.
&lt;br&gt;&lt;br&gt;
I don&apos;t have 131k lines of code on this page!  How do you diagnose this?  None of the available tools out there work well for IE.
&lt;br&gt;&lt;br&gt;
Gawd...IE is going to drive me to give up web programming and become a used car salesman.
&lt;br&gt;&lt;br&gt;
::: hair pulling ::: 
				</description>
				
				<category>Web20</category>				
				
				<category>Internet Explorer</category>				
				
				<category>Javascript</category>				
				
				<pubDate>Wed, 03 Mar 2010 12:28:00 -0700</pubDate>
				<guid>http://www.christopherchin.com/blog/index.cfm/2010/3/3/Why-does-IE-suck-so--much--Great-error-message</guid>
				
			</item>
			
			<item>
				<title>Adobe Flex 4 for Coldfusion programmers -- all day training -- Nov. 20 -- San Francisco -- FREE!!</title>
				<link>http://www.christopherchin.com/blog/index.cfm/2009/11/16/Adobe-Flex-4-for-Coldfusion-programmers--all-day-training--Nov-20--San-Francisco--FREE</link>
				<description>
				
				I&apos;m not sure if everyone is aware of the subject of this posting, but if you&apos;re not, please visit this url for more information:  &lt;a href=&quot;http://ria.meetup.com/12/calendar/11859336/&quot; target=&quot;_blank&quot;&gt;http://ria.meetup.com/12/calendar/11859336/&lt;/a&gt;
&lt;br&gt;&lt;br&gt;
If you&apos;re in the bay area and want to get your feet wet with Flex this is the place to be.
&lt;br&gt;&lt;br&gt;
Hope to see you there! 
				</description>
				
				<category>Web20</category>				
				
				<category>Adobe</category>				
				
				<category>Events</category>				
				
				<category>Coldfusion</category>				
				
				<category>Flex</category>				
				
				<pubDate>Mon, 16 Nov 2009 12:02:00 -0700</pubDate>
				<guid>http://www.christopherchin.com/blog/index.cfm/2009/11/16/Adobe-Flex-4-for-Coldfusion-programmers--all-day-training--Nov-20--San-Francisco--FREE</guid>
				
			</item>
			
			<item>
				<title>jquery ajax + xml + IE = hair loss</title>
				<link>http://www.christopherchin.com/blog/index.cfm/2009/10/26/jquery-ajax--xml--IE--hair-loss</link>
				<description>
				
				I&apos;ve done ajax before with jQuery with good results on all browsers...until
&lt;br&gt;&lt;br&gt;
I used an XML return with IE (all IE&apos;s that is).
&lt;br&gt;&lt;br&gt;
When returning XML from a CFC (or any other server-side script), IE doesn&apos;t treat the XML document as, well, XML.
&lt;br&gt;&lt;br&gt;
It actually barfs on it unless you tell it to load up the ActiveX control to parse your XML doc. (psst..Thanks Microsoft).
&lt;br&gt;&lt;br&gt;
Just look at this:
&lt;code&gt;
$.ajax({
type: &quot;POST&quot;,
url: &quot;ajaxtest.cfc?method=getallblogs&quot;,
data: datastring,
success: function(data) {
var xml;
if ( $.browser.msie ) {
xml = new ActiveXObject(&quot;Microsoft.XMLDOM&quot;);
xml.async = false;
xml.loadXML(data);
} else {
xml = data;
}
$(xml).find(&apos;blog&apos;).each(function(){
var id = $(this).attr(&apos;id&apos;);
var title = $(this).find(&apos;name&apos;).text();
var url = $(this).find(&apos;url&apos;).text();
$(&apos;&lt;div class=&quot;items&quot; id=&quot;link_&apos;+id+&apos;&quot;&gt;&lt;/div&gt;&apos;).html(&apos;&lt;a href=&quot;&apos;+url+&apos;&quot;&gt;&apos;+title+&apos;&lt;/a&gt;&apos;).appendTo(&apos;#blogInfo&apos;);
});
}
});
&lt;/code&gt;
&lt;br&gt;&lt;br&gt;
See that little blurb in the ajax call for &quot;if ($.browser.msie)&quot;?  That&apos;s the call you&apos;ll need to do to make IE behave like 99% of the other browsers out there.
&lt;br&gt;&lt;br&gt;
I&apos;ve put together a short demo.  I know the code is duplicated, but this is for demo purposes.  Hope this helps you guys doing XML data returns.
&lt;br&gt;&lt;br&gt;
Oh and once again &quot;Thank you Microsoft&quot; for making my web development career such a wild adventure.
&lt;br&gt;&lt;br&gt;
&lt;a href=&quot;http://www.christopherchin.com/blog/demos/jquery/jqueryxmlajax.cfm&quot; target=&quot;_blank&quot;&gt;XML data return demo&lt;/a&gt;
&lt;br&gt;&lt;br&gt;
p.s. the data returned is from my blackberry bloggers site.  If you&apos;re a blackberry fan, check it out (&lt;a href=&quot;http://www.blackberrybloggers.org&quot;&gt;http://www.blackberrybloggers.org&lt;/a&gt;).  It might look a bit familiar :) 
				</description>
				
				<category>Ajax</category>				
				
				<category>Web20</category>				
				
				<category>Rants/Raves</category>				
				
				<category>Coldfusion</category>				
				
				<category>Javascript</category>				
				
				<category>jQuery</category>				
				
				<category>Microsoft</category>				
				
				<pubDate>Mon, 26 Oct 2009 12:01:00 -0700</pubDate>
				<guid>http://www.christopherchin.com/blog/index.cfm/2009/10/26/jquery-ajax--xml--IE--hair-loss</guid>
				
			</item>
			
			<item>
				<title>Restaurants + flash website + mobile = FAIL!</title>
				<link>http://www.christopherchin.com/blog/index.cfm/2009/8/6/Restaurants--flash-website--mobile--FAIL</link>
				<description>
				
				&lt;p&gt;When will restaurants realize that full flash websites suck for those of us on the go?&lt;/p&gt;
&lt;br&gt;
&lt;p&gt;Situation: I&apos;m out with friends wondering where we should go for lunch.  Someone says, &quot;Let&apos;s try XYZ restaurant&quot;.  I pull out my blackberry.  Other non-descript friends pull out their iPhones and we get to XYZ Restaurant&apos;s website.  Guess what?  It&apos;s a FULL FLASH site.  None of us can render it and we all groan and go to some other directory like Yelp, CitySearch, menupages..etc.&lt;/p&gt;
&lt;br&gt;
&lt;p&gt;How do we get the word to web designers/programmers who do restaurant websites that they need to do 2 versions of the website: Mobile and everything else.&lt;/p&gt; 
				</description>
				
				<category>Web20</category>				
				
				<category>Rants/Raves</category>				
				
				<pubDate>Thu, 06 Aug 2009 13:43:00 -0700</pubDate>
				<guid>http://www.christopherchin.com/blog/index.cfm/2009/8/6/Restaurants--flash-website--mobile--FAIL</guid>
				
			</item>
			
			<item>
				<title>SVN/CVS:  Any good Commit Comment templates?</title>
				<link>http://www.christopherchin.com/blog/index.cfm/2009/5/8/SVNCVS--Any-good-Commit-Comment-templates</link>
				<description>
				
				We&apos;re implementing SVN in our office and well, things are well under way.
&lt;br&gt;&lt;br&gt;
However, people are going to start committing their changes in various ways.  So reading commits from multiple developers (might) prove to be confusing.
&lt;br&gt;&lt;br&gt;
I was playing around with SVN for eclipse and it&apos;s got a great feature called, &quot;Commit Templates&quot;.
&lt;br&gt;&lt;br&gt;
Being new, I created 2 templates for myself and was thinking about making Commit Templates a standard among the developers.
&lt;br&gt;&lt;br&gt;
Here&apos;s what I made up so far:
&lt;br&gt;&lt;br&gt;
&lt;b&gt;=BUG FIX=&lt;/b&gt;
&lt;br&gt;&lt;br&gt;
&lt;b&gt;Bug Description:&lt;/b&gt;
&lt;br&gt;&lt;br&gt;
&lt;b&gt;Fix:&lt;/b&gt;
&lt;br&gt;&lt;br&gt;
&lt;b&gt;Project:&lt;/b&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;
&lt;b&gt;=NEW FEATURE=&lt;/b&gt;
&lt;br&gt;&lt;br&gt;
&lt;b&gt;Description:&lt;/b&gt;
&lt;br&gt;&lt;br&gt;
&lt;b&gt;Project:&lt;/b&gt;
&lt;br&gt;&lt;br&gt;
&lt;br&gt;
Again, these are just for me.  I was wondering if anyone else has any other templates that you use and like?
&lt;br&gt;&lt;br&gt;
Thanks! 
				</description>
				
				<category>Spry</category>				
				
				<category>Web20</category>				
				
				<category>SVN/CVS</category>				
				
				<category>CSS</category>				
				
				<category>Coldfusion</category>				
				
				<category>Javascript</category>				
				
				<category>jQuery</category>				
				
				<pubDate>Fri, 08 May 2009 11:11:00 -0700</pubDate>
				<guid>http://www.christopherchin.com/blog/index.cfm/2009/5/8/SVNCVS--Any-good-Commit-Comment-templates</guid>
				
			</item>
			
			<item>
				<title>jQuery + ajax + logout form</title>
				<link>http://www.christopherchin.com/blog/index.cfm/2009/3/24/jQuery--ajax--logout-form</link>
				<description>
				
				I love jquery! Let me just say that now.  I&apos;m a true convert from prototype/scriptaculous.  I love prototype for all it&apos;s pros.  But, I can&apos;t deny the support from the jQuery community and the momentum it has in the web world.
&lt;br&gt;&lt;br&gt;
With that said, I dove in and started playing around with the jQuery UI plugin (built by the jQuery guys of course).  The dialog plug in is simply DOPE!! (is that a youngin&apos; term?)
&lt;br&gt;&lt;br&gt;
I was playing around with a logout confirmation dialog and here&apos;s what I&apos;ve come up with.  It&apos;s a bit verbose for my taste and by NO means the best way to do this.  But, I do hope it points people in the right direction if they&apos;re looking to do something like this.
&lt;br&gt;&lt;br&gt;
&lt;code&gt;
$(&apos;#logout&apos;).click(
		function(e){
		e.preventDefault();
		
        $(&apos;&lt;div id=&quot;confirmLogout&quot; title=&quot;Logout?&quot;&gt;Are you sure you want to log out?&lt;/div&gt;&apos;).dialog(
			{
			modal: true,
			height: 100, 
			width:350,
			show:&quot;blind&quot;,
			hide: &quot;blind&quot;,
			buttons:{
				&quot;Yes&quot;:function() {
					$.ajax({ 
						url: &apos;someActionCall.cfm&apos;, 
						complete: function() {
							$(&apos;#confirmLogout&apos;).html(&quot;See you next time!&quot;);
							$(&apos;.ui-dialog-buttonpane&apos;).css(&apos;display&apos;,&apos;none&apos;);
							var dlg = $(&quot;#confirmLogout&quot;).parents(&quot;.ui-dialog:first&quot;);
							dlg.animate({ width: 200},50);
							setTimeout(function(){$(&quot;#confirmLogout&quot;).dialog(&quot;close&quot;)},3000);
							setTimeout(function(){location.reload();},1500);	
							} 
						});
					},
				&quot;No&quot;:function() {
					$(&quot;#confirmLogout&quot;).dialog(&quot;close&quot;);
					}
			},
			close:function(){
				 $(&quot;#confirmLogout&quot;).remove();
			}
			});

        return false; 
	});
&lt;/code&gt;
&lt;br&gt;&lt;br&gt;
The demo can be found here:  &lt;a href=&quot;http://www.christopherchin.com/blog/demos/jquery/jquerydialog.html&quot; target=&quot;_blank&quot;&gt;Logout demo&lt;/a&gt; 
				</description>
				
				<category>Ajax</category>				
				
				<category>Web20</category>				
				
				<category>Rants/Raves</category>				
				
				<category>Javascript</category>				
				
				<category>jQuery</category>				
				
				<pubDate>Tue, 24 Mar 2009 13:17:00 -0700</pubDate>
				<guid>http://www.christopherchin.com/blog/index.cfm/2009/3/24/jQuery--ajax--logout-form</guid>
				
			</item>
			
			<item>
				<title>Internet Explorer 8:  Really?..why?</title>
				<link>http://www.christopherchin.com/blog/index.cfm/2009/3/23/Internet-Explorer-8--Reallywhy</link>
				<description>
				
				Ok, I just downloaded the latest and greatest Redmond browser.  I have to say there are some good things and then of course, there are bad things.  It&apos;s by far worlds better than IE 6, but it&apos;s still....Internet Explorer.
&lt;br&gt;&lt;br&gt;
Here&apos;s a thought...Why doesn&apos;t M$ just stop making IE altogether?  Seriously?  They&apos;ve made web development a headache since day one of IE.  Tried to gain market share and control how to program for the web.  That failed miserably.
&lt;br&gt;&lt;br&gt;
Suggestion?  Why not have M$ partner with FF to help distribute with their OS?  MS won&apos;t partner with the other browsers (Safari? ha! Ballmer and Jobs partnering?, Chrome? ha! Didn&apos;t Ballmer want to eradicate google from the planet?)  Just makes sense to me if M$ and FF partner.  We&apos;d be so much better off with web development and &quot;standards&quot; compliance.
&lt;br&gt;&lt;br&gt;
Ok..time for me to get off the hookah heheheh
&lt;br&gt;&lt;br&gt;
Oh...&lt;a href=&quot;http://www.bringdownie6.com/&quot; target=&quot;_blank&quot;&gt;Bring Down IE6!&lt;/a&gt; 
				</description>
				
				<category>Technology</category>				
				
				<category>Web20</category>				
				
				<category>Miscellaneous</category>				
				
				<category>Rants/Raves</category>				
				
				<category>FireFox</category>				
				
				<category>Apple</category>				
				
				<pubDate>Mon, 23 Mar 2009 13:29:00 -0700</pubDate>
				<guid>http://www.christopherchin.com/blog/index.cfm/2009/3/23/Internet-Explorer-8--Reallywhy</guid>
				
			</item>
			
			<item>
				<title>Overcoming IE&apos;s annoying &quot;click&quot; sounds</title>
				<link>http://www.christopherchin.com/blog/index.cfm/2009/3/19/Overcoming-IEs-annoying-click-sounds</link>
				<description>
				
				I was very intrigued at the new IE 8 so I went and downloaded it and installed it.&lt;br&gt;&lt;br&gt;
After 3mins of using it, I realized, &quot;God this clicking sound with every link click is like a mosquito on your ear while you&apos;re trying to sleep&quot;.  I haven&apos;t used IE in MONTHS (if it weren&apos;t so damn tied to the WinOS I&apos;d have removed it eons ago), so I&apos;ve been relieved of it&apos;s annoyances.&lt;br&gt;&lt;br&gt;
Then I used the greatest thing since sliced bread, and searched google for &quot;annoying click sounds IE&quot;.&lt;br&gt;&lt;br&gt;
Found this: &lt;a href=&quot;http://www.friedbeef.com/how-to-stop-internet-explorers-annoying-clicking-sound/&quot; target=&quot;_blank&quot;&gt;Remove Annoying Clicks IE&lt;/a&gt;
&lt;br&gt;&lt;br&gt;
Nuff said....
&lt;br&gt;&lt;br&gt;
no wait...&quot;DIE IE!!!&quot;
&lt;br&gt;&lt;br&gt;
Now...Nuff said.. 
				</description>
				
				<category>Technology</category>				
				
				<category>Web20</category>				
				
				<category>Rants/Raves</category>				
				
				<pubDate>Thu, 19 Mar 2009 19:18:00 -0700</pubDate>
				<guid>http://www.christopherchin.com/blog/index.cfm/2009/3/19/Overcoming-IEs-annoying-click-sounds</guid>
				
			</item>
			
			<item>
				<title>jQuery + ajax dialog + load external content</title>
				<link>http://www.christopherchin.com/blog/index.cfm/2009/3/19/jQuery--ajax-dialog--load-external-content</link>
				<description>
				
				I was intrigued by Ray Camden&apos;s blog about simple dialog popups with jQuery.  I saw some of his examples and wanted to take them a step further.
&lt;br&gt;&lt;br&gt;
http://www.coldfusionjedi.com/index.cfm/2009/2/1/Creating-a-Dialog-with-jQuery-UI&lt;br&gt;
&lt;br&gt;&lt;br&gt;
His example shows that the content is inline with the document and the jQuery code just extracts it from the page and shows it in a dialog box.  Cool, yeah, but...what if you wanted to pull in external content?
&lt;br&gt;&lt;br&gt;
This is what I came up with:
&lt;code&gt;
$(document).ready(function(){
	//define config object
   var dialogOpts = {
		title: &quot;My First AJAX dialog&quot;,
		modal: true,
		autoOpen: false,
		height: 500,
		width: 500,
		open: function() {
		//display correct dialog content
		$(&quot;#example&quot;).load(&quot;beta/loremipsum.html&quot;);}
		};
    $(&quot;#example&quot;).dialog(dialogOpts);	//end dialog
	
	$(&apos;#showdialog&apos;).click(
		function (){
			$(&quot;#example&quot;).dialog(&quot;open&quot;);
			return false;
		}
	);

});

&lt;/code&gt;
The &quot;example&quot; div is within the page.  It&apos;s blank.  But, get&apos;s populated by the open option within the dialog options.  That&apos;s how I got around it.&lt;br&gt;&lt;br&gt;
Can anyone tell me if this is the &quot;best practices&quot; way of doing this?  Is there a better more efficient way?
&lt;br&gt;&lt;br&gt;
&lt;a href=&quot;http://www.christopherchin.com/blog/demos/jquery/jquerydialog2.html&quot; target=&quot;_blank&quot;&gt;Dialog Demo&lt;/a&gt; 
				</description>
				
				<category>Technology</category>				
				
				<category>Web20</category>				
				
				<category>Javascript</category>				
				
				<pubDate>Thu, 19 Mar 2009 11:33:00 -0700</pubDate>
				<guid>http://www.christopherchin.com/blog/index.cfm/2009/3/19/jQuery--ajax-dialog--load-external-content</guid>
				
			</item>
			
			<item>
				<title>jQuery ajax with coldfusion</title>
				<link>http://www.christopherchin.com/blog/index.cfm/2009/3/18/jQuery-ajax-with-coldfusion</link>
				<description>
				
				Ray Camden blogged about this recently and I thought I&apos;d take time out to do some of this jQuery/Ajaxy stuff myself.
&lt;br&gt;&lt;br&gt;
I was in the midst of trying to figure out how to to a simple login authentication process with CF8 and jQuery.&lt;br&gt;
I&apos;ve done this in the past with Prototype and this wonderful ajax library &lt;a href=&quot;http://www.lalabird.com/&quot; target=_blank&quot;&gt;JSMX&lt;/a&gt;.  Simple library to use..just love it!  But, with the times, I figured I should try this &quot;jQuery&quot; thing.  Seems to be alot of momentum behind it and there&apos;s been a lot of raves.  So I dove in.  [More]
				</description>
				
				<category>Ajax</category>				
				
				<category>Web20</category>				
				
				<category>Javascript</category>				
				
				<pubDate>Wed, 18 Mar 2009 04:42:00 -0700</pubDate>
				<guid>http://www.christopherchin.com/blog/index.cfm/2009/3/18/jQuery-ajax-with-coldfusion</guid>
				
			</item>
			
			<item>
				<title>Adobe Flex Groups for N00bs?</title>
				<link>http://www.christopherchin.com/blog/index.cfm/2009/1/17/Adobe-Flex-Groups-for-N00bs</link>
				<description>
				
				Does anyone know of any flex groups (google or yahoo) that are geared towards those just getting their feet wet with Flex?
&lt;br&gt;&lt;br&gt;
I&apos;m in the midst of doing some coding in it and have a ton of questions.  I&apos;d love to have post some of my questions and get some feedback from the guru&apos;s of the flex community.
&lt;br&gt;&lt;br&gt;
Thanks 
				</description>
				
				<category>Web20</category>				
				
				<category>Adobe</category>				
				
				<category>Flex</category>				
				
				<pubDate>Sat, 17 Jan 2009 16:57:00 -0700</pubDate>
				<guid>http://www.christopherchin.com/blog/index.cfm/2009/1/17/Adobe-Flex-Groups-for-N00bs</guid>
				
			</item>
			
			<item>
				<title>Web 2.0 Expo 44% discount code</title>
				<link>http://www.christopherchin.com/blog/index.cfm/2009/1/16/Web-20-Expo-44-discount-code</link>
				<description>
				
				If you&apos;re planning on attending &lt;a href=&quot;http://www.web20expo.com&quot; target=&quot;_blank&quot;&gt;Web 2.0 Expo coming up&lt;/a&gt;, you are going to want to use this discount code.
&lt;br&gt;&lt;br&gt;
Registration Promo code: &lt;b&gt;obama22&lt;/b&gt; = 44% discount.
&lt;br&gt;&lt;br&gt;
It works!  I just did a faux registration with it and the full conference pass @ $1,395 was chopped to $781.20.
&lt;br&gt;&lt;br&gt;
Not sure how long it will work (meaning time or # of uses), but get on it fast if you want to save some big bucks :) 
				</description>
				
				<category>Ajax</category>				
				
				<category>Web20</category>				
				
				<category>Miscellaneous</category>				
				
				<category>Events</category>				
				
				<pubDate>Fri, 16 Jan 2009 14:19:00 -0700</pubDate>
				<guid>http://www.christopherchin.com/blog/index.cfm/2009/1/16/Web-20-Expo-44-discount-code</guid>
				
			</item>
			
			<item>
				<title>It&apos;s 2009: Are we still programming for 800x600 browsers?</title>
				<link>http://www.christopherchin.com/blog/index.cfm/2009/1/7/Its-2009-Are-we-still-programming-for-800x600-browsers</link>
				<description>
				
				I&apos;m in the midst of creating a couple of websites and was just wondering what is the &quot;new&quot; standard for screen resolutions.
&lt;br&gt;&lt;br&gt;
I do remember a while back that the holy grail of screen resolutions was 800x600.  Please please please tell me this has gone the way of the 8-track.
&lt;br&gt;&lt;br&gt;
I&apos;m thinking with the advent of cheap and powerful video cards, every up-to-date computer should be at minimum, 1024x768. (I&apos;m hoping higher)
&lt;br&gt;&lt;br&gt;
Has anyone looked at their stats program to see what your visitors screen resolution has been lately? 
				</description>
				
				<category>Technology</category>				
				
				<category>Web20</category>				
				
				<category>CSS</category>				
				
				<pubDate>Wed, 07 Jan 2009 17:49:00 -0700</pubDate>
				<guid>http://www.christopherchin.com/blog/index.cfm/2009/1/7/Its-2009-Are-we-still-programming-for-800x600-browsers</guid>
				
			</item>
			</channel></rss>