<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Trigger Custom Events with jQuery</title>
	<atom:link href="http://technify.me/user-experience/javascript/jquery/trigger-custom-events-with-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://technify.me/user-experience/javascript/jquery/trigger-custom-events-with-jquery/</link>
	<description></description>
	<lastBuildDate>Thu, 09 May 2013 02:43:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Scott Lewis</title>
		<link>http://technify.me/user-experience/javascript/jquery/trigger-custom-events-with-jquery/#comment-933</link>
		<dc:creator>Scott Lewis</dc:creator>
		<pubDate>Mon, 18 Mar 2013 20:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://technify.me/?p=30#comment-933</guid>
		<description><![CDATA[Ah, yes it should. Thanks.]]></description>
		<content:encoded><![CDATA[<p>Ah, yes it should. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lonhosford</title>
		<link>http://technify.me/user-experience/javascript/jquery/trigger-custom-events-with-jquery/#comment-926</link>
		<dc:creator>lonhosford</dc:creator>
		<pubDate>Mon, 11 Mar 2013 17:57:00 +0000</pubDate>
		<guid isPermaLink="false">http://technify.me/?p=30#comment-926</guid>
		<description><![CDATA[Line 8 should this be an equals? if (typeof(MyObject) != &quot;undefined&quot;) MyObject = {};]]></description>
		<content:encoded><![CDATA[<p>Line 8 should this be an equals? if (typeof(MyObject) != &#8220;undefined&#8221;) MyObject = {};</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Lewis</title>
		<link>http://technify.me/user-experience/javascript/jquery/trigger-custom-events-with-jquery/#comment-872</link>
		<dc:creator>Scott Lewis</dc:creator>
		<pubDate>Wed, 23 Nov 2011 16:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://technify.me/?p=30#comment-872</guid>
		<description><![CDATA[Excellent. Thanks for the heads up and the suggestion. I will update the post right now. Cheers.]]></description>
		<content:encoded><![CDATA[<p>Excellent. Thanks for the heads up and the suggestion. I will update the post right now. Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erik Phipps</title>
		<link>http://technify.me/user-experience/javascript/jquery/trigger-custom-events-with-jquery/#comment-869</link>
		<dc:creator>Erik Phipps</dc:creator>
		<pubDate>Thu, 17 Nov 2011 21:16:00 +0000</pubDate>
		<guid isPermaLink="false">http://technify.me/?p=30#comment-869</guid>
		<description><![CDATA[Scott, this worked for me:
if (typeof MyObject === &#039;undefined&#039;) MyObject= {};

Here is a jsfiddle: http://jsfiddle.net/McWatt/apM58/I tested it in FF7, Chrome15, IE7/IE8/IE9 (well, not the real versions, but by switching browser mode in IE9 dev tools).I&#039;m no js expert so you might want to double-check my code, which I modified from this stackoverflow answer: 
http://stackoverflow.com/questions/858181/how-to-check-a-not-defined-variable-in-javascript/858193#858193

Do you still have plans on posting a follow up to this article? It would be nice to see some real-world examples. Thanks!]]></description>
		<content:encoded><![CDATA[<p>Scott, this worked for me:<br />
if (typeof MyObject === &#8217;undefined&#8217;) MyObject= {};</p>
<p>Here is a jsfiddle: http://jsfiddle.net/McWatt/apM58/I tested it in FF7, Chrome15, IE7/IE8/IE9 (well, not the real versions, but by switching browser mode in IE9 dev tools).I&#8217;m no js expert so you might want to double-check my code, which I modified from this stackoverflow answer: <br />
http://stackoverflow.com/questions/858181/how-to-check-a-not-defined-variable-in-javascript/858193#858193</p>
<p>Do you still have plans on posting a follow up to this article? It would be nice to see some real-world examples. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Lewis</title>
		<link>http://technify.me/user-experience/javascript/jquery/trigger-custom-events-with-jquery/#comment-868</link>
		<dc:creator>Scott Lewis</dc:creator>
		<pubDate>Thu, 17 Nov 2011 20:37:00 +0000</pubDate>
		<guid isPermaLink="false">http://technify.me/?p=30#comment-868</guid>
		<description><![CDATA[Hey, thanks for letting me know about the error. Which browser and OS are you using? I&#039;ll update the post as soon as I have time. That line should work if you change it to if typeof(MyObject) != &quot;object&quot;) ...]]></description>
		<content:encoded><![CDATA[<p>Hey, thanks for letting me know about the error. Which browser and OS are you using? I&#8217;ll update the post as soon as I have time. That line should work if you change it to if typeof(MyObject) != &#8220;object&#8221;) &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erik Phipps</title>
		<link>http://technify.me/user-experience/javascript/jquery/trigger-custom-events-with-jquery/#comment-867</link>
		<dc:creator>Erik Phipps</dc:creator>
		<pubDate>Thu, 17 Nov 2011 19:36:00 +0000</pubDate>
		<guid isPermaLink="false">http://technify.me/?p=30#comment-867</guid>
		<description><![CDATA[Nice post! one thing...if (! MyObject) MyObject = {} causes an &quot;MyObject is not defined&quot; error.]]></description>
		<content:encoded><![CDATA[<p>Nice post! one thing&#8230;if (! MyObject) MyObject = {} causes an &#8220;MyObject is not defined&#8221; error.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
