<?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: How to return value from Ajax Function &#8211; Use synchronous request</title>
	<atom:link href="http://roshanbh.com.np/2008/01/how-to-return-value-from-ajax-function-use-synchronous-request.html/feed" rel="self" type="application/rss+xml" />
	<link>http://roshanbh.com.np/2008/01/how-to-return-value-from-ajax-function-use-synchronous-request.html</link>
	<description>Useful Tutorials, Scripts , Tips, and Resources for all PHP and Ajax beginners and experts .</description>
	<lastBuildDate>Mon, 07 May 2012 21:11:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: rbw152</title>
		<link>http://roshanbh.com.np/2008/01/how-to-return-value-from-ajax-function-use-synchronous-request.html/comment-page-1#comment-6548</link>
		<dc:creator>rbw152</dc:creator>
		<pubDate>Thu, 09 Jun 2011 12:14:54 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/2008/01/how-to-return-value-from-ajax-function-use-synchronous-request.html#comment-6548</guid>
		<description>Brilliant! I&#039;d been trying to work this one out all morning and you descrinbed precisely the problem I had.

Thanks very much!</description>
		<content:encoded><![CDATA[<p>Brilliant! I&#8217;d been trying to work this one out all morning and you descrinbed precisely the problem I had.</p>
<p>Thanks very much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: haha</title>
		<link>http://roshanbh.com.np/2008/01/how-to-return-value-from-ajax-function-use-synchronous-request.html/comment-page-1#comment-5586</link>
		<dc:creator>haha</dc:creator>
		<pubDate>Tue, 10 Aug 2010 15:08:51 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/2008/01/how-to-return-value-from-ajax-function-use-synchronous-request.html#comment-5586</guid>
		<description>with Prototype.js, below code works!


function test(param) {
							var url = &quot;haha&quot;+param;
							new Ajax.Request(url,{
								asynchronous: false,
								onComplete: function(data) {
									result = data.responseText;
								}
							});
							return result;
}</description>
		<content:encoded><![CDATA[<p>with Prototype.js, below code works!</p>
<p>function test(param) {<br />
							var url = &#8220;haha&#8221;+param;<br />
							new Ajax.Request(url,{<br />
								asynchronous: false,<br />
								onComplete: function(data) {<br />
									result = data.responseText;<br />
								}<br />
							});<br />
							return result;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eran Hazout</title>
		<link>http://roshanbh.com.np/2008/01/how-to-return-value-from-ajax-function-use-synchronous-request.html/comment-page-1#comment-5571</link>
		<dc:creator>Eran Hazout</dc:creator>
		<pubDate>Tue, 03 Aug 2010 18:18:29 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/2008/01/how-to-return-value-from-ajax-function-use-synchronous-request.html#comment-5571</guid>
		<description>it is great :)
I have been trying to fix it for a long time ... 
thank you</description>
		<content:encoded><![CDATA[<p>it is great <img src='http://roshanbh.com.np/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
I have been trying to fix it for a long time &#8230;<br />
thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: drgiggles</title>
		<link>http://roshanbh.com.np/2008/01/how-to-return-value-from-ajax-function-use-synchronous-request.html/comment-page-1#comment-5338</link>
		<dc:creator>drgiggles</dc:creator>
		<pubDate>Sun, 04 Apr 2010 21:00:06 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/2008/01/how-to-return-value-from-ajax-function-use-synchronous-request.html#comment-5338</guid>
		<description>great stuff thanks for this works like a charm.</description>
		<content:encoded><![CDATA[<p>great stuff thanks for this works like a charm.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pligg.com</title>
		<link>http://roshanbh.com.np/2008/01/how-to-return-value-from-ajax-function-use-synchronous-request.html/comment-page-1#comment-4931</link>
		<dc:creator>pligg.com</dc:creator>
		<pubDate>Thu, 17 Dec 2009 19:35:33 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/2008/01/how-to-return-value-from-ajax-function-use-synchronous-request.html#comment-4931</guid>
		<description>&lt;strong&gt;How to return value from Ajax Function from PHP file...&lt;/strong&gt;

Have you ever tried to return values from the Ajax function ? Well it might be sometime the cases when you might have to return the value got from the server to another function rather than updating the component. Let&#039;s try to return the values from t...</description>
		<content:encoded><![CDATA[<p><strong>How to return value from Ajax Function from PHP file&#8230;</strong></p>
<p>Have you ever tried to return values from the Ajax function ? Well it might be sometime the cases when you might have to return the value got from the server to another function rather than updating the component. Let&#8217;s try to return the values from t&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: newbies</title>
		<link>http://roshanbh.com.np/2008/01/how-to-return-value-from-ajax-function-use-synchronous-request.html/comment-page-1#comment-4070</link>
		<dc:creator>newbies</dc:creator>
		<pubDate>Mon, 08 Jun 2009 10:14:55 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/2008/01/how-to-return-value-from-ajax-function-use-synchronous-request.html#comment-4070</guid>
		<description>hey thanks a lot for your tips, this helped me in my headache ajax in developing php database library..

more power!</description>
		<content:encoded><![CDATA[<p>hey thanks a lot for your tips, this helped me in my headache ajax in developing php database library..</p>
<p>more power!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tony</title>
		<link>http://roshanbh.com.np/2008/01/how-to-return-value-from-ajax-function-use-synchronous-request.html/comment-page-1#comment-3010</link>
		<dc:creator>Tony</dc:creator>
		<pubDate>Tue, 28 Oct 2008 20:24:21 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/2008/01/how-to-return-value-from-ajax-function-use-synchronous-request.html#comment-3010</guid>
		<description>This is not working my friend, it keeps returning undefined.</description>
		<content:encoded><![CDATA[<p>This is not working my friend, it keeps returning undefined.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roshan</title>
		<link>http://roshanbh.com.np/2008/01/how-to-return-value-from-ajax-function-use-synchronous-request.html/comment-page-1#comment-2033</link>
		<dc:creator>Roshan</dc:creator>
		<pubDate>Wed, 27 Aug 2008 08:24:25 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/2008/01/how-to-return-value-from-ajax-function-use-synchronous-request.html#comment-2033</guid>
		<description>@Scott - which function did you try the first one or the second one ? try the second one....</description>
		<content:encoded><![CDATA[<p>@Scott &#8211; which function did you try the first one or the second one ? try the second one&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott F</title>
		<link>http://roshanbh.com.np/2008/01/how-to-return-value-from-ajax-function-use-synchronous-request.html/comment-page-1#comment-2032</link>
		<dc:creator>Scott F</dc:creator>
		<pubDate>Wed, 27 Aug 2008 07:42:49 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/2008/01/how-to-return-value-from-ajax-function-use-synchronous-request.html#comment-2032</guid>
		<description>Manish is right. The value returned is still undefined.</description>
		<content:encoded><![CDATA[<p>Manish is right. The value returned is still undefined.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roshan</title>
		<link>http://roshanbh.com.np/2008/01/how-to-return-value-from-ajax-function-use-synchronous-request.html/comment-page-1#comment-1160</link>
		<dc:creator>Roshan</dc:creator>
		<pubDate>Wed, 11 Jun 2008 11:37:03 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/2008/01/how-to-return-value-from-ajax-function-use-synchronous-request.html#comment-1160</guid>
		<description>Which function did u use the second one right? Did you made your own getXMLHTTP(); function</description>
		<content:encoded><![CDATA[<p>Which function did u use the second one right? Did you made your own getXMLHTTP(); function</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: manish</title>
		<link>http://roshanbh.com.np/2008/01/how-to-return-value-from-ajax-function-use-synchronous-request.html/comment-page-1#comment-1159</link>
		<dc:creator>manish</dc:creator>
		<pubDate>Wed, 11 Jun 2008 10:44:31 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/2008/01/how-to-return-value-from-ajax-function-use-synchronous-request.html#comment-1159</guid>
		<description>nice tutorial thanks. this is only the concept , when i use not wotking....still return value &quot;undefined&quot;.

please check..again...</description>
		<content:encoded><![CDATA[<p>nice tutorial thanks. this is only the concept , when i use not wotking&#8230;.still return value &#8220;undefined&#8221;.</p>
<p>please check..again&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PHP Coding School &#187; Blog Archive &#187; php tips [2008-01-29 19:50:34]</title>
		<link>http://roshanbh.com.np/2008/01/how-to-return-value-from-ajax-function-use-synchronous-request.html/comment-page-1#comment-171</link>
		<dc:creator>PHP Coding School &#187; Blog Archive &#187; php tips [2008-01-29 19:50:34]</dc:creator>
		<pubDate>Tue, 29 Jan 2008 20:04:47 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/2008/01/how-to-return-value-from-ajax-function-use-synchronous-request.html#comment-171</guid>
		<description>[...]  How to return value from Ajax Function - Use synchronous request  By Roshan  Have you ever tried to return values from the Ajax function ? Well it might be sometime the cases when you might have to return the value got from the server to another function rather than updating the component. &#8230;   Roshan Bhattarai&#8217;s Blog - PHP&#8230; - http://roshanbh.com.np [...]</description>
		<content:encoded><![CDATA[<p>[...]  How to return value from Ajax Function &#8211; Use synchronous request  By Roshan  Have you ever tried to return values from the Ajax function ? Well it might be sometime the cases when you might have to return the value got from the server to another function rather than updating the component. &#8230;   Roshan Bhattarai&#8217;s Blog &#8211; PHP&#8230; &#8211; <a href="http://roshanbh.com.np" rel="nofollow">http://roshanbh.com.np</a> [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 1/16 queries in 1.224 seconds using disk: basic
Object Caching 366/367 objects using disk: basic

Served from: roshanbh.com.np @ 2012-05-17 05:47:52 -->
