<?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>Sean&#039;s Blog &#187; jquery</title>
	<atom:link href="http://seanbehan.com/tag/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://seanbehan.com</link>
	<description>Web Programming, Ruby on Rails, Wordpress, PHP from Burlington, Vermont</description>
	<lastBuildDate>Wed, 08 Sep 2010 16:10:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Ruby on Rails, jQuery and YUI API Docs Available as Mac OS X Dictionary Binaries</title>
		<link>http://seanbehan.com/documentation/ruby-on-rails-jquery-and-yui-api-docs-available-as-mac-os-x-dictionary-binaries/</link>
		<comments>http://seanbehan.com/documentation/ruby-on-rails-jquery-and-yui-api-docs-available-as-mac-os-x-dictionary-binaries/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 15:09:02 +0000</pubDate>
		<dc:creator>bseanvt</dc:creator>
				<category><![CDATA[Documentation]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[dictionary]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[mac os x]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[yui]]></category>

		<guid isPermaLink="false">http://seanbehan.com/?p=636</guid>
		<description><![CDATA[I came across an awesome tool this morning. Priit Haamer has chunked Ruby on Rails, jQuery, and some of YUI documentation into native Mac OS X dictionary binaries. This lets you search those API docs from Spotlight, TextMate, any application that uses the dictionary app! I have tested the Ruby on Rails API within TextMate. [...]]]></description>
			<content:encoded><![CDATA[<p>I came across an awesome tool this morning. <a href="http://www.priithaamer.com/">Priit Haamer</a> has chunked Ruby on Rails, jQuery, and some of YUI documentation into native Mac OS X dictionary binaries. This lets you search those API docs from Spotlight, TextMate, any application that uses the dictionary app!</p>
<p>I have tested the Ruby on Rails API within TextMate. Hover over any function and hit ctl+cmd+d and a little popup will give you a glimpse at the API docs. Seems like a nice alternative to ACK or the normal TextMate function lookup.</p>
<p>More information and installation instructions are available at Priit&#8217;s site <a href="http://www.priithaamer.com/blog">http://www.priithaamer.com/blog</a></p>
<p>Here is a nice video of the tool</p>
<p><a href="http://seanbehan.com/documentation/ruby-on-rails-jquery-and-yui-api-docs-available-as-mac-os-x-dictionary-binaries/"><em>Click here to view the embedded video.</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://seanbehan.com/documentation/ruby-on-rails-jquery-and-yui-api-docs-available-as-mac-os-x-dictionary-binaries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using jQuery and Prototype Javascript Together with jQuery.noConflict();</title>
		<link>http://seanbehan.com/programming/using-jquery-and-prototype-javascript-together-with-jquerynoconflict/</link>
		<comments>http://seanbehan.com/programming/using-jquery-and-prototype-javascript-together-with-jquerynoconflict/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 19:46:37 +0000</pubDate>
		<dc:creator>bseanvt</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[prototype]]></category>
		<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://bseanvt.wordpress.com/?p=202</guid>
		<description><![CDATA[To use the jQuery javascript framework in a Rails application, that also uses the Prototype framework for the same application, you&#8217;ll need to reassign the $() function for jQuery to another variable. This is very simple to do. Just make sure to include the jQuery library after you load your prototype defaults. Here is the [...]]]></description>
			<content:encoded><![CDATA[<p>To use the jQuery javascript framework in a Rails application, that also uses the Prototype framework for the same application, you&#8217;ll need to reassign the $() function for jQuery to another variable. This is very simple to do. Just make sure to include the jQuery library after you load your prototype defaults.</p>
<p>Here is the javascript to alias the $() function</p>
<pre>
script type="text/javascript"
  var $_ = jQuery.noConflict();
  $_(document).ready(function(){
  $_("a").click(function(){
  //... do something
  });
});
/script
</pre>
]]></content:encoded>
			<wfw:commentRss>http://seanbehan.com/programming/using-jquery-and-prototype-javascript-together-with-jquerynoconflict/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
