<?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>Protospace &#187; Commentary</title>
	<atom:link href="http://www.protospace.com/category/blog/commentary/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.protospace.com</link>
	<description>it&#039;s not a place...</description>
	<lastBuildDate>Mon, 05 Mar 2012 17:16:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to Get jqModal and jQuery 1.4 Play Nice – Part II</title>
		<link>http://www.protospace.com/blog/commentary/how-to-get-jqmodal-and-jquery-1-4-play-nice-part-ii/</link>
		<comments>http://www.protospace.com/blog/commentary/how-to-get-jqmodal-and-jquery-1-4-play-nice-part-ii/#comments</comments>
		<pubDate>Fri, 04 Feb 2011 14:04:32 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[jqmodal]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.protospace.com/?p=303</guid>
		<description><![CDATA[In Part I, I showed how to get jqModal and jQuery 1.4.x to play nice together.  That was huge for me.  Then I wanted to use jqModal in WordPress.  It wasn&#8217;t working.  Drove me nuts.  Yet the way to resolve it was simple&#8230; of course if you&#8217;re a javascript ninja, you&#8217;re probably laughing at me.  [...]]]></description>
			<content:encoded><![CDATA[<p>In <a href="blog/commentary/how-to-get-jqmodal-and-jquery-1-4-play-nice-part-i/">Part I</a>, I showed<a href="http://www.protospace.com/wp-content/uploads/2010/01/wp-orange-xl_theme.png"><img class="alignleft size-thumbnail wp-image-217" title="wp-orange-xl_theme" src="http://www.protospace.com/wp-content/uploads/2010/01/wp-orange-xl_theme-150x150.png" alt="" width="150" height="150" /></a> how to get jqModal and jQuery 1.4.x to play nice together.  That was huge for me.  Then I wanted to use jqModal in WordPress.  It wasn&#8217;t working.  Drove me nuts.  Yet the way to resolve it was simple&#8230; of course if you&#8217;re a javascript ninja, you&#8217;re probably laughing at me.  But this post isn&#8217;t for javascript ninjas&#8230; it&#8217;s for others, like me.</p>
<p>I&#8217;ll assume you know how to <a title="Javascript and WordPress" href="http://codex.wordpress.org/Function_Reference/wp_enqueue_script">enqueue your javascript into WordPress</a>.  You can also read more about doing it &#8220;<a title="jQuery and WordPress the Right Way" href="http://digwp.com/2009/06/including-jquery-in-wordpress-the-right-way/" target="_blank">the right way</a>.&#8221;  I&#8217;m going to show the quick little thing that made my morning the other day.</p>
<p>I was trying to get the jqModal working.  This is the code I had:</p>
<blockquote><p><code>$().ready(function() {<br />
$('#dialog').jqm();<br />
});</code></p></blockquote>
<p>It wasn&#8217;t working&#8230;  then reading the &#8220;<a title="jQuery and WordPress the Right Way" href="http://digwp.com/2009/06/including-jquery-in-wordpress-the-right-way/" target="_blank">the right way</a>&#8221; to do it and a flash of inspiration, I now have this:</p>
<blockquote><p><code>var $<strong>j</strong> = jQuery.noConflict();<br />
$j(document).ready(function() {<br />
$j('#dialog').jqm();<br />
});</code></p></blockquote>
<p>Of course, you can replace $j with whatever you want.  This works with the jqModal fix shown in <a href="blog/commentary/how-to-get-jqmodal-and-jquery-1-4-play-nice-part-i/">Part I</a>.</p>
<p>Now, jQuery and jqModal play nice in my WordPress.  It&#8217;s been a good morning.  Funny how such little, simple things make life good.</p>
<img src="http://www.protospace.com/?ak_action=api_record_view&id=303&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.protospace.com/blog/commentary/how-to-get-jqmodal-and-jquery-1-4-play-nice-part-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Get jqModal and jQuery 1.4 Play Nice &#8211; Part I</title>
		<link>http://www.protospace.com/blog/commentary/how-to-get-jqmodal-and-jquery-1-4-play-nice-part-i/</link>
		<comments>http://www.protospace.com/blog/commentary/how-to-get-jqmodal-and-jquery-1-4-play-nice-part-i/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 14:42:52 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[jqmodal]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.protospace.com/?p=293</guid>
		<description><![CDATA[I love jqModal for adding cool AJAX effects.  It&#8217;s light, flexible and does a TON of cool modal lifting. Except it didn&#8217;t play nice with jQuery 1.4.x.  It would break.  It drove me nuts.  I&#8217;m OK at jQuery and Javascript, so it wasn&#8217;t quickly obvious how to fix it. Thanks to Oleg responding to a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.protospace.com/wp-content/uploads/2011/02/jqModal.png"><img class="alignleft size-full wp-image-294" title="jqModal Shot" src="http://www.protospace.com/wp-content/uploads/2011/02/jqModal.png" alt="" width="300" height="261" /></a>I love <a title="jqModal" href="http://dev.iceburg.net/jquery/jqModal/" target="_blank">jqModal</a> for adding cool AJAX effects.  It&#8217;s light, flexible and does a TON of cool modal lifting.</p>
<p>Except it didn&#8217;t play nice with jQuery 1.4.x.  It would break.  It drove me nuts.  I&#8217;m OK at jQuery and Javascript, so it wasn&#8217;t quickly obvious how to fix it.</p>
<p>Thanks to Oleg responding to a sort of <a title="jqModal help at StackOverflow" href="http://stackoverflow.com/questions/3990765/jqmodal-is-trying-to-run-my-whole-page" target="_blank">related post</a> at StackOverflow I now, too,  have the answer!<br />
Oleg said:</p>
<blockquote><p>If you use jQuery 1.4.x you should verify whether the jqModal.js contain <code>$()</code> (for example <code>{$()[t]("keypress",m)[t]("keydown",m)[t]("mousedown",m);}</code> in <a rel="nofollow" href="http://dev.iceburg.net/jquery/jqModal/jqModal.js">jqModal.js</a>). This can not be used together with jQuery 1.4.x. To fix the problem replace <code>$()</code> to <code>$(document)</code>.</p></blockquote>
<p>Fortunately, the change was simple.  One location in the jqModal file and you&#8217;re good to go.  I&#8217;ve made the change and provide the file to you for download.</p>
<p>Full jqModal documentation available at the <a title="jqModal Site" href="http://dev.iceburg.net/jquery/jqModal/" target="_blank">jqModal site</a>.</p>
<p>jqModal is copyright 2007, 2008 by Brice Burgess under both MIT and GPL licenses.  A hearty thanks to Brice for writing such an awesome jQuery add-on.</p>
<blockquote>
<p style="text-align: center;"><a href="http://www.protospace.com/wp-content/plugins/download-monitor/download.php?id=1" target="_blank"><img src="http://www.protospace.com/wp-content/uploads/2011/02/jscript_50x50.png" alt="jqModal Script" /><br>Click to Download</a></p>
</blockquote>
<p><a onmouseover="window.status='http://www.woot.com';return true;" onmouseout="window.status=' ';return true;" href="http://www.kqzyfj.com/click-4251886-10821544" target="_blank"><br />
<img class="alignright" src="http://www.lduhtrp.net/image-4251886-10821544" border="0" alt="" width="120" height="90" /></a></p>
<img src="http://www.protospace.com/?ak_action=api_record_view&id=293&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.protospace.com/blog/commentary/how-to-get-jqmodal-and-jquery-1-4-play-nice-part-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Product from Protospace</title>
		<link>http://www.protospace.com/blog/commentary/new-product-from-protospace/</link>
		<comments>http://www.protospace.com/blog/commentary/new-product-from-protospace/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 21:32:05 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Commentary]]></category>

		<guid isPermaLink="false">http://www.protospace.com/?p=254</guid>
		<description><![CDATA[Protospace is pleased to announce a new product available:  WordPress backup.  Back up your site using Amazon&#8217;s EC3 cloud storage inexpensively.  Sleep better knowing your site can be restored quickly and easily.  More information! Backup my Site!]]></description>
			<content:encoded><![CDATA[<p>Protospace is pleased to announce a new product available:  WordPress backup.  Back up your site using Amazon&#8217;s EC3 cloud storage inexpensively.  Sleep better knowing your site can be restored quickly and easily.  <a href="http://www.protospace.com/products/wordpress-backup/">More information!</a></p>
<h2 style="text-align: center;"><a href="http://www.protospace.com/products/wordpress-backup/">Backup my Site!</a></h2>
<img src="http://www.protospace.com/?ak_action=api_record_view&id=254&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.protospace.com/blog/commentary/new-product-from-protospace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Exactly Is&#8230;?</title>
		<link>http://www.protospace.com/blog/commentary/what-exactly-is/</link>
		<comments>http://www.protospace.com/blog/commentary/what-exactly-is/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 15:22:04 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Glossary]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.protospace.com/?p=194</guid>
		<description><![CDATA[I recently had a few questions about some terms used in the WordPress/Blogging/Web site world.  That prompted me to start a new feature on Protospace.com &#8211; the glossary.  As people ask questions, or things come up, I&#8217;ll post a definition of the word/term/phrase.  Hopefully, these will help you be better informed and productive as you [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had a few questions about some terms used in the WordPress/Blogging/Web site world.  That prompted me to start a new feature on Protospace.com &#8211; <a href="/glossary/">the glossary</a>.  As people ask questions, or things come up, I&#8217;ll post a definition of the word/term/phrase.  Hopefully, these will help you be better informed and productive as you use your site.</p>
<p>Feel free to submit a term (use the contact form or comments below) for inclusion in the <a href="/glossary/">glossary</a>.</p>
<p><a href="http://www.amazon.com/gp/product/0470402962?ie=UTF8&amp;tag=oldhamhirstde-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0470402962"><img class="alignright size-full wp-image-195" title="Wordpress for Dummies" src="http://www.protospace.com/wp-content/uploads/2010/01/5191+o9WzuL._SL160_.jpg" alt="Wordpress for Dummies" width="128" height="160" /></a>We might also recommend WordPress for Dummies.  No implication you&#8217;re a dummy, but it&#8217;s a decent book to help you get started and understand how to use WordPress.</p>
<img src="http://www.protospace.com/?ak_action=api_record_view&id=194&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.protospace.com/blog/commentary/what-exactly-is/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Which one is for me?</title>
		<link>http://www.protospace.com/blog/commentary/which-one-is-for-me/</link>
		<comments>http://www.protospace.com/blog/commentary/which-one-is-for-me/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 23:01:49 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.protospace.com/?p=185</guid>
		<description><![CDATA[WordPress? Drupal? Joomla? Moveable Type? Cousin Vinnie&#8217;s CMS Special? Intuit&#8217;s $4.99 Special? Which platform should you use for your web site?  Does it matter?  Each solution has strengths and weaknesses.  Each one can impact how you use your site and that impacts how successful your site is going to be. We&#8217;ve settled on WordPress.  Why?  [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress?</p>
<p>Drupal?</p>
<p>Joomla?</p>
<p>Moveable Type?</p>
<p>Cousin Vinnie&#8217;s CMS Special?</p>
<p>Intuit&#8217;s $4.99 Special?</p>
<p>Which platform should you use for your web site?  Does it matter?  Each solution has strengths and weaknesses.  Each one can impact how you use your site and that impacts how successful your site is going to be.</p>
<p>We&#8217;ve settled on WordPress.  Why?  WordPress is robust, stable, easy to use, easy to maintain, easy to extend, very flexible and the right price.</p>
<p>Of those reasons the most important is that it is easy to use from your perspective.  It&#8217;s easy for you to create new content for your site.  It&#8217;s easy for you to embed videos or audio.  You don&#8217;t need to pay a high-priced developer to keep your site up-to-date.  It&#8217;s easy for you to have your site email your clients each time your web site is updated.</p>
<p>Of course, there are things to learn.  But if you can learn to use a word processor, you can learn to use WordPress.</p>
<p>Which one do we think you should use?  That&#8217;s easy.  WordPress.</p>
<p>PS:  Since WordPress is <em>free</em>, we can&#8217;t be accused of shilling for the company.  We don&#8217;t get paid (nor do they) if you use it.  We just think it&#8217;s a great piece of software.</p>
<img src="http://www.protospace.com/?ak_action=api_record_view&id=185&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.protospace.com/blog/commentary/which-one-is-for-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>it&#8217;s not a place&#8230;</title>
		<link>http://www.protospace.com/blog/commentary/hello-world/</link>
		<comments>http://www.protospace.com/blog/commentary/hello-world/#comments</comments>
		<pubDate>Sun, 21 Jan 2007 01:57:58 +0000</pubDate>
		<dc:creator>3DPeruna</dc:creator>
				<category><![CDATA[Commentary]]></category>

		<guid isPermaLink="false">http://www.protospace.com/uncategorized/hello-world/</guid>
		<description><![CDATA[It&#8217;s Protospace. What is protospace&#8230;we&#8217;ll, we&#8217;re not sure.  And I doubt we&#8217;ll ever find out&#8230;]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s Protospace.</p>
<p>What is protospace&#8230;we&#8217;ll, we&#8217;re not sure.  And I doubt we&#8217;ll ever find out&#8230;</p>
<img src="http://www.protospace.com/?ak_action=api_record_view&id=1&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.protospace.com/blog/commentary/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

