<?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: Cross-domain AJAX with JSONP</title>
	<atom:link href="http://devlog.info/2010/03/10/cross-domain-ajax/feed/" rel="self" type="application/rss+xml" />
	<link>http://devlog.info/2010/03/10/cross-domain-ajax/</link>
	<description>One developers blog.</description>
	<lastBuildDate>Fri, 03 Feb 2012 16:12:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Portafolios &#8220;Centro Cultural Las Américas&#8221; &#124; Oskrdesigns</title>
		<link>http://devlog.info/2010/03/10/cross-domain-ajax/comment-page-1/#comment-81936</link>
		<dc:creator>Portafolios &#8220;Centro Cultural Las Américas&#8221; &#124; Oskrdesigns</dc:creator>
		<pubDate>Fri, 02 Dec 2011 03:37:10 +0000</pubDate>
		<guid isPermaLink="false">http://devlog.info/?p=139#comment-81936</guid>
		<description>[...] mashups. How do you consume a web service with Javascript if you can’t load the data properly? Read the rest of this entry »   Posted by Christopher on March 10th, 2010 in Design Patterns, Javascript               Share a [...]</description>
		<content:encoded><![CDATA[<p>[...] mashups. How do you consume a web service with Javascript if you can’t load the data properly? Read the rest of this entry »   Posted by Christopher on March 10th, 2010 in Design Patterns, Javascript               Share a [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keith Marshall (mgraphic)</title>
		<link>http://devlog.info/2010/03/10/cross-domain-ajax/comment-page-1/#comment-76941</link>
		<dc:creator>Keith Marshall (mgraphic)</dc:creator>
		<pubDate>Fri, 11 Nov 2011 13:22:37 +0000</pubDate>
		<guid isPermaLink="false">http://devlog.info/?p=139#comment-76941</guid>
		<description>Ah, I learned something new here!</description>
		<content:encoded><![CDATA[<p>Ah, I learned something new here!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Saeed Neamati</title>
		<link>http://devlog.info/2010/03/10/cross-domain-ajax/comment-page-1/#comment-64424</link>
		<dc:creator>Saeed Neamati</dc:creator>
		<pubDate>Mon, 26 Sep 2011 14:20:23 +0000</pubDate>
		<guid isPermaLink="false">http://devlog.info/?p=139#comment-64424</guid>
		<description>I still can&#039;t find out how JSONP is a workaround of Cross-Origin limitations. Do you mean that jQuery JSONP ajax instead of creating an XMLHttpRequest, simply creates an script tag and loads the result and passes it to the success callback function?</description>
		<content:encoded><![CDATA[<p>I still can&#8217;t find out how JSONP is a workaround of Cross-Origin limitations. Do you mean that jQuery JSONP ajax instead of creating an XMLHttpRequest, simply creates an script tag and loads the result and passes it to the success callback function?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JSONP, o la inserción dinámica de scripts que podría sustituir a Ajax &#171; Yo, programador</title>
		<link>http://devlog.info/2010/03/10/cross-domain-ajax/comment-page-1/#comment-61331</link>
		<dc:creator>JSONP, o la inserción dinámica de scripts que podría sustituir a Ajax &#171; Yo, programador</dc:creator>
		<pubDate>Thu, 15 Sep 2011 10:03:01 +0000</pubDate>
		<guid isPermaLink="false">http://devlog.info/?p=139#comment-61331</guid>
		<description>[...] de scripts no se pueden hacer POST (aunque ¿quién los necesita realmente?) pero permite cargar contenidos en diferentes dominios (cross domain), cosa que no es posible con Ajax. De hecho, todas las soluciones llamadas Ajax [...]</description>
		<content:encoded><![CDATA[<p>[...] de scripts no se pueden hacer POST (aunque ¿quién los necesita realmente?) pero permite cargar contenidos en diferentes dominios (cross domain), cosa que no es posible con Ajax. De hecho, todas las soluciones llamadas Ajax [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lea Hayes</title>
		<link>http://devlog.info/2010/03/10/cross-domain-ajax/comment-page-1/#comment-61196</link>
		<dc:creator>Lea Hayes</dc:creator>
		<pubDate>Wed, 14 Sep 2011 20:31:23 +0000</pubDate>
		<guid isPermaLink="false">http://devlog.info/?p=139#comment-61196</guid>
		<description>Cheers, just what I needed!</description>
		<content:encoded><![CDATA[<p>Cheers, just what I needed!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://devlog.info/2010/03/10/cross-domain-ajax/comment-page-1/#comment-60693</link>
		<dc:creator>James</dc:creator>
		<pubDate>Mon, 12 Sep 2011 21:21:52 +0000</pubDate>
		<guid isPermaLink="false">http://devlog.info/?p=139#comment-60693</guid>
		<description>Good explanation of JSONP, thanks!</description>
		<content:encoded><![CDATA[<p>Good explanation of JSONP, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jorawebdev</title>
		<link>http://devlog.info/2010/03/10/cross-domain-ajax/comment-page-1/#comment-46079</link>
		<dc:creator>jorawebdev</dc:creator>
		<pubDate>Fri, 08 Jul 2011 17:22:57 +0000</pubDate>
		<guid isPermaLink="false">http://devlog.info/?p=139#comment-46079</guid>
		<description>Great resource and well explained, Christpher. Just to clarify -you don&#039;t need to use jQuery for a simple js script injection. Here&#039;s the basic code fragment:

    var script=document.createElement(&#039;script&#039;)
    script.setAttribute(&#039;src&#039;,&#039;http://www.yourdomain.com/yourscript.js&#039;);
    document.getElementsByTagName(&#039;head&#039;)[0].appendChild(script);


In &quot;yourscript.js&quot; file you can do all your manipulations.</description>
		<content:encoded><![CDATA[<p>Great resource and well explained, Christpher. Just to clarify -you don&#8217;t need to use jQuery for a simple js script injection. Here&#8217;s the basic code fragment:</p>
<p>    var script=document.createElement(&#8217;script&#8217;)<br />
    script.setAttribute(&#8217;src&#8217;,'http://www.yourdomain.com/yourscript.js&#8217;);<br />
    document.getElementsByTagName(&#8216;head&#8217;)[0].appendChild(script);</p>
<p>In &#8220;yourscript.js&#8221; file you can do all your manipulations.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arly</title>
		<link>http://devlog.info/2010/03/10/cross-domain-ajax/comment-page-1/#comment-43202</link>
		<dc:creator>Arly</dc:creator>
		<pubDate>Fri, 17 Jun 2011 01:10:49 +0000</pubDate>
		<guid isPermaLink="false">http://devlog.info/?p=139#comment-43202</guid>
		<description>Thanks, your article is the last of all articles I&#039;ve read to understand this JSONP thingy for days.

My mistake was I begun with understanding JSONP on jQuery,.. since it started off inside jQuery.Ajax() I thought this JSONP is actually an AJAX request, which confuses me in regards of same domain policy.
But now I finally found what I missed, that JSONP is NOT XHR request. starting from here (your article), I now can fully understand the examples. LOL.

Thanks.</description>
		<content:encoded><![CDATA[<p>Thanks, your article is the last of all articles I&#8217;ve read to understand this JSONP thingy for days.</p>
<p>My mistake was I begun with understanding JSONP on jQuery,.. since it started off inside jQuery.Ajax() I thought this JSONP is actually an AJAX request, which confuses me in regards of same domain policy.<br />
But now I finally found what I missed, that JSONP is NOT XHR request. starting from here (your article), I now can fully understand the examples. LOL.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cross Server AJAX Call - Question Lounge</title>
		<link>http://devlog.info/2010/03/10/cross-domain-ajax/comment-page-1/#comment-26010</link>
		<dc:creator>Cross Server AJAX Call - Question Lounge</dc:creator>
		<pubDate>Mon, 10 Jan 2011 03:11:12 +0000</pubDate>
		<guid isPermaLink="false">http://devlog.info/?p=139#comment-26010</guid>
		<description>[...] cons in my situation:jsonp &#8211; This doesn&#8217;t support POST data.simple server side proxy http://devlog.info/2010/03/10/cross-domain-ajax/ &#8211; Since the javascript is shared between the two urls, I&#8217;ll have to create the same [...]</description>
		<content:encoded><![CDATA[<p>[...] cons in my situation:jsonp &#8211; This doesn&#8217;t support POST data.simple server side proxy <a href="http://devlog.info/2010/03/10/cross-domain-ajax/" rel="nofollow">http://devlog.info/2010/03/10/cross-domain-ajax/</a> &#8211; Since the javascript is shared between the two urls, I&#8217;ll have to create the same [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ctrkShiftBryan</title>
		<link>http://devlog.info/2010/03/10/cross-domain-ajax/comment-page-1/#comment-25800</link>
		<dc:creator>ctrkShiftBryan</dc:creator>
		<pubDate>Fri, 07 Jan 2011 16:34:38 +0000</pubDate>
		<guid isPermaLink="false">http://devlog.info/?p=139#comment-25800</guid>
		<description>i have a new friend named jason p.
he likes to consume with me
we call cross-domain
but have to refrain
from POSTing requests
that&#039;s insane</description>
		<content:encoded><![CDATA[<p>i have a new friend named jason p.<br />
he likes to consume with me<br />
we call cross-domain<br />
but have to refrain<br />
from POSTing requests<br />
that&#8217;s insane</p>
]]></content:encoded>
	</item>
</channel>
</rss>

