<?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: JQuery Ajax + Rails</title>
	<atom:link href="http://mad.ly/2007/05/17/jquery-ajax-rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://mad.ly/2007/05/17/jquery-ajax-rails/</link>
	<description>rails, jquery, flash, etc</description>
	<lastBuildDate>Sun, 20 Dec 2009 21:02:36 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: 65 Excellent jQuery Resources (tutorials,cheat sheets,ebooks,demos,plugins&#8230;) &#124; Speckyboy - Wordpress and Design</title>
		<link>http://mad.ly/2007/05/17/jquery-ajax-rails/comment-page-1/#comment-2817</link>
		<dc:creator>65 Excellent jQuery Resources (tutorials,cheat sheets,ebooks,demos,plugins&#8230;) &#124; Speckyboy - Wordpress and Design</dc:creator>
		<pubDate>Wed, 02 Apr 2008 12:05:55 +0000</pubDate>
		<guid isPermaLink="false">http://mad.ly/2007/05/17/jquery-ajax-rails/#comment-2817</guid>
		<description>[...] Mapping Microformats with jQuery 53. A List Apart: Articles: Frameworks for Designers 54. mad.ly – JQuery Ajax + Rails 55. 1007 + Ajax/Javascript/Dhtml examples and demos to download 56. QuarkRuby: Why I moved from [...]</description>
		<content:encoded><![CDATA[<p>[...] Mapping Microformats with jQuery 53. A List Apart: Articles: Frameworks for Designers 54. mad.ly – JQuery Ajax + Rails 55. 1007 + Ajax/Javascript/Dhtml examples and demos to download 56. QuarkRuby: Why I moved from [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rabbit</title>
		<link>http://mad.ly/2007/05/17/jquery-ajax-rails/comment-page-1/#comment-1916</link>
		<dc:creator>Rabbit</dc:creator>
		<pubDate>Sun, 06 Jan 2008 09:55:53 +0000</pubDate>
		<guid isPermaLink="false">http://mad.ly/2007/05/17/jquery-ajax-rails/#comment-1916</guid>
		<description>Thank you, thank you, thank you!

I was having a frustrating issue with Rails&#039; new cookie-based authenticity token and respond_to.

Interestingly enough, just before I found this page I was wishing there was more documentation for jQuery&#039;s beforeSend attribute. So this little bit:

beforeSend: function(xhr) {xhr.setRequestHeader(&quot;Accept&quot;, &quot;text/javascript&quot;);}

Was like a holy grail for me. Thanks again!</description>
		<content:encoded><![CDATA[<p>Thank you, thank you, thank you!</p>
<p>I was having a frustrating issue with Rails&#8217; new cookie-based authenticity token and respond_to.</p>
<p>Interestingly enough, just before I found this page I was wishing there was more documentation for jQuery&#8217;s beforeSend attribute. So this little bit:</p>
<p>beforeSend: function(xhr) {xhr.setRequestHeader(&#8220;Accept&#8221;, &#8220;text/javascript&#8221;);}</p>
<p>Was like a holy grail for me. Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron</title>
		<link>http://mad.ly/2007/05/17/jquery-ajax-rails/comment-page-1/#comment-1641</link>
		<dc:creator>Aaron</dc:creator>
		<pubDate>Mon, 26 Nov 2007 22:37:50 +0000</pubDate>
		<guid isPermaLink="false">http://mad.ly/2007/05/17/jquery-ajax-rails/#comment-1641</guid>
		<description>I just completed a plugin called jRails that makes using jQuery with Rails very easy. It is essentially a drop-in jQuery replacement for Prototype/script.aculo.us on Rails and you get all of the same default Rails helpers using the lighter jQuery library.
http://www.ennerchi.com/projects/jrails</description>
		<content:encoded><![CDATA[<p>I just completed a plugin called jRails that makes using jQuery with Rails very easy. It is essentially a drop-in jQuery replacement for Prototype/script.aculo.us on Rails and you get all of the same default Rails helpers using the lighter jQuery library.<br />
<a href="http://www.ennerchi.com/projects/jrails" rel="nofollow">http://www.ennerchi.com/projects/jrails</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laurens</title>
		<link>http://mad.ly/2007/05/17/jquery-ajax-rails/comment-page-1/#comment-1638</link>
		<dc:creator>Laurens</dc:creator>
		<pubDate>Mon, 26 Nov 2007 15:30:32 +0000</pubDate>
		<guid isPermaLink="false">http://mad.ly/2007/05/17/jquery-ajax-rails/#comment-1638</guid>
		<description>one obvious fix I&#039;m using right now is removing the host part from this.href…</description>
		<content:encoded><![CDATA[<p>one obvious fix I&#8217;m using right now is removing the host part from this.href…</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laurens</title>
		<link>http://mad.ly/2007/05/17/jquery-ajax-rails/comment-page-1/#comment-1637</link>
		<dc:creator>Laurens</dc:creator>
		<pubDate>Mon, 26 Nov 2007 15:03:38 +0000</pubDate>
		<guid isPermaLink="false">http://mad.ly/2007/05/17/jquery-ajax-rails/#comment-1637</guid>
		<description>Hi Geoff,

I found out that the current JQuery version (&gt; 1.1.2) breaks the above request with 

           url: this.href, 
and 
          dataType: &quot;script&quot;, 
and 
           xhr.setRequestHeader(&quot;Accept&quot;, &quot;text/javascript&quot;);

this.href contains the whole url including the host part thus it seems like a remote url. With remote urls JQuery doesn&#039;t do a XHTTPRequest but appends a  tag to the DOM, which doesn&#039;t send the manually set request headers.

Any solution for this problem?

Laurens</description>
		<content:encoded><![CDATA[<p>Hi Geoff,</p>
<p>I found out that the current JQuery version (&gt; 1.1.2) breaks the above request with </p>
<p>           url: this.href,<br />
and<br />
          dataType: &#8220;script&#8221;,<br />
and<br />
           xhr.setRequestHeader(&#8220;Accept&#8221;, &#8220;text/javascript&#8221;);</p>
<p>this.href contains the whole url including the host part thus it seems like a remote url. With remote urls JQuery doesn&#8217;t do a XHTTPRequest but appends a  tag to the DOM, which doesn&#8217;t send the manually set request headers.</p>
<p>Any solution for this problem?</p>
<p>Laurens</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arik</title>
		<link>http://mad.ly/2007/05/17/jquery-ajax-rails/comment-page-1/#comment-1331</link>
		<dc:creator>Arik</dc:creator>
		<pubDate>Wed, 31 Oct 2007 14:08:58 +0000</pubDate>
		<guid isPermaLink="false">http://mad.ly/2007/05/17/jquery-ajax-rails/#comment-1331</guid>
		<description>Rails is very opinionated, jQuery is not coming to rails anytime soon...</description>
		<content:encoded><![CDATA[<p>Rails is very opinionated, jQuery is not coming to rails anytime soon&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Irish</title>
		<link>http://mad.ly/2007/05/17/jquery-ajax-rails/comment-page-1/#comment-758</link>
		<dc:creator>Paul Irish</dc:creator>
		<pubDate>Sat, 22 Sep 2007 22:00:09 +0000</pubDate>
		<guid isPermaLink="false">http://mad.ly/2007/05/17/jquery-ajax-rails/#comment-758</guid>
		<description>Jeremy Durham seems to have picked up the jquery+rails torch.. http://www.jeremydurham.com/</description>
		<content:encoded><![CDATA[<p>Jeremy Durham seems to have picked up the jquery+rails torch.. <a href="http://www.jeremydurham.com/" rel="nofollow">http://www.jeremydurham.com/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: High Earth Orbit &#187; Blog Archive &#187; links for 2007-07-26</title>
		<link>http://mad.ly/2007/05/17/jquery-ajax-rails/comment-page-1/#comment-131</link>
		<dc:creator>High Earth Orbit &#187; Blog Archive &#187; links for 2007-07-26</dc:creator>
		<pubDate>Fri, 27 Jul 2007 12:43:44 +0000</pubDate>
		<guid isPermaLink="false">http://mad.ly/2007/05/17/jquery-ajax-rails/#comment-131</guid>
		<description>[...] JQuery Ajax + Rails how to integrate jQuery&#8217;s Ajax capabilities into a Ruby on Rails application; (tags: rubyonrails javascript jQuery) [...]</description>
		<content:encoded><![CDATA[<p>[...] JQuery Ajax + Rails how to integrate jQuery&#8217;s Ajax capabilities into a Ruby on Rails application; (tags: rubyonrails javascript jQuery) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: links for 2007-06-12 &#171; /tmp</title>
		<link>http://mad.ly/2007/05/17/jquery-ajax-rails/comment-page-1/#comment-43</link>
		<dc:creator>links for 2007-06-12 &#171; /tmp</dc:creator>
		<pubDate>Tue, 12 Jun 2007 16:18:43 +0000</pubDate>
		<guid isPermaLink="false">http://mad.ly/2007/05/17/jquery-ajax-rails/#comment-43</guid>
		<description>[...] mad.ly â€“ JQuery Ajax + Rails (tags: javascript Ajax jquery) [...]</description>
		<content:encoded><![CDATA[<p>[...] mad.ly â€“ JQuery Ajax + Rails (tags: javascript Ajax jquery) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Rogovets</title>
		<link>http://mad.ly/2007/05/17/jquery-ajax-rails/comment-page-1/#comment-33</link>
		<dc:creator>Tim Rogovets</dc:creator>
		<pubDate>Thu, 24 May 2007 09:14:36 +0000</pubDate>
		<guid isPermaLink="false">http://mad.ly/2007/05/17/jquery-ajax-rails/#comment-33</guid>
		<description>Awesome info!
Very clever work.</description>
		<content:encoded><![CDATA[<p>Awesome info!<br />
Very clever work.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
