<?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: Simple Jquery Ajax with Codeigniter Part 4</title>
	<atom:link href="http://www.weblee.co.uk/2009/06/10/simple-jquery-ajax-with-codeigniter-part-4/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.weblee.co.uk/2009/06/10/simple-jquery-ajax-with-codeigniter-part-4/</link>
	<description>PHP Freelance Developer</description>
	<lastBuildDate>Wed, 04 May 2011 10:24:34 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Rene</title>
		<link>http://www.weblee.co.uk/2009/06/10/simple-jquery-ajax-with-codeigniter-part-4/comment-page-1/#comment-127</link>
		<dc:creator>Rene</dc:creator>
		<pubDate>Fri, 19 Mar 2010 10:34:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.weblee.co.uk/?p=169#comment-127</guid>
		<description>Thx, for the quick comments back, I have solved it by using the jquery blockUI plugin.
I remember that you use it too, but that was when I already post the comment.

Greetz</description>
		<content:encoded><![CDATA[<p>Thx, for the quick comments back, I have solved it by using the jquery blockUI plugin.<br />
I remember that you use it too, but that was when I already post the comment.</p>
<p>Greetz</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lee</title>
		<link>http://www.weblee.co.uk/2009/06/10/simple-jquery-ajax-with-codeigniter-part-4/comment-page-1/#comment-126</link>
		<dc:creator>Lee</dc:creator>
		<pubDate>Fri, 19 Mar 2010 10:06:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.weblee.co.uk/?p=169#comment-126</guid>
		<description>Well using the callback success disable the link ie $(&#039;a.linkclass&#039;).click(function(event){ event.preventDefault() }) or remove it from the DOM.

Hope this helps a little.</description>
		<content:encoded><![CDATA[<p>Well using the callback success disable the link ie $(&#8217;a.linkclass&#8217;).click(function(event){ event.preventDefault() }) or remove it from the DOM.</p>
<p>Hope this helps a little.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rene</title>
		<link>http://www.weblee.co.uk/2009/06/10/simple-jquery-ajax-with-codeigniter-part-4/comment-page-1/#comment-125</link>
		<dc:creator>Rene</dc:creator>
		<pubDate>Fri, 19 Mar 2010 09:06:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.weblee.co.uk/?p=169#comment-125</guid>
		<description>Hi,

Great screencasts, only I have a question.
I have 2 links and when you click on them I send a ajax request, this is working fine thx to you, only I want to disable the link where i clicked on and then the other link must be enabled and visa versa.
So that you cant click on the link that you already clicked on, because now I can click thousands of times on the same link and always its sending a request.

I hope you can help me.

Greetz</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Great screencasts, only I have a question.<br />
I have 2 links and when you click on them I send a ajax request, this is working fine thx to you, only I want to disable the link where i clicked on and then the other link must be enabled and visa versa.<br />
So that you cant click on the link that you already clicked on, because now I can click thousands of times on the same link and always its sending a request.</p>
<p>I hope you can help me.</p>
<p>Greetz</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lee</title>
		<link>http://www.weblee.co.uk/2009/06/10/simple-jquery-ajax-with-codeigniter-part-4/comment-page-1/#comment-116</link>
		<dc:creator>Lee</dc:creator>
		<pubDate>Wed, 03 Feb 2010 17:04:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.weblee.co.uk/?p=169#comment-116</guid>
		<description>Hi 

If you are saying will an ajax request jump functions then the answer is no. But instead write your code to call other functions instead of redirecting.

ie
&lt;code&gt;
function name($string)
{
  if($string != &quot;Bob&quot;)
    $this-&gt;function($string)
    exit;
}
&lt;/code&gt;

Hope it helps</description>
		<content:encoded><![CDATA[<p>Hi </p>
<p>If you are saying will an ajax request jump functions then the answer is no. But instead write your code to call other functions instead of redirecting.</p>
<p>ie<br />
<code><br />
function name($string)<br />
{<br />
  if($string != "Bob")<br />
    $this-&gt;function($string)<br />
    exit;<br />
}<br />
</code></p>
<p>Hope it helps</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mehike</title>
		<link>http://www.weblee.co.uk/2009/06/10/simple-jquery-ajax-with-codeigniter-part-4/comment-page-1/#comment-112</link>
		<dc:creator>mehike</dc:creator>
		<pubDate>Mon, 11 Jan 2010 13:31:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.weblee.co.uk/?p=169#comment-112</guid>
		<description>One question:

in controller is if all ok 
echo 1;

I want do redirect to another controller/function
and this not working.  new, redirected controller/view is echoed inside old ajaxform...
(if user roll_id is 90, then redirect to another controller, if 85 then stay this one, old controller. I think I can do echo anchor(another controller) but I want to send directly to another. How I can implement this, with this simple ajax/jguery controller? or this is impossible?)

can I do redirect if all ok and how?</description>
		<content:encoded><![CDATA[<p>One question:</p>
<p>in controller is if all ok<br />
echo 1;</p>
<p>I want do redirect to another controller/function<br />
and this not working.  new, redirected controller/view is echoed inside old ajaxform&#8230;<br />
(if user roll_id is 90, then redirect to another controller, if 85 then stay this one, old controller. I think I can do echo anchor(another controller) but I want to send directly to another. How I can implement this, with this simple ajax/jguery controller? or this is impossible?)</p>
<p>can I do redirect if all ok and how?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rianto Wahyudi</title>
		<link>http://www.weblee.co.uk/2009/06/10/simple-jquery-ajax-with-codeigniter-part-4/comment-page-1/#comment-110</link>
		<dc:creator>Rianto Wahyudi</dc:creator>
		<pubDate>Fri, 01 Jan 2010 16:30:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.weblee.co.uk/?p=169#comment-110</guid>
		<description>Nice tutorial, really well done! Help me speed up my development . 

I use Web Firefox Development add ons ( https://addons.mozilla.org/en-US/firefox/addon/60) which gives you ability to disable caching</description>
		<content:encoded><![CDATA[<p>Nice tutorial, really well done! Help me speed up my development . </p>
<p>I use Web Firefox Development add ons ( <a href="https://addons.mozilla.org/en-US/firefox/addon/60)" rel="nofollow">https://addons.mozilla.org/en-US/firefox/addon/60)</a> which gives you ability to disable caching</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jun</title>
		<link>http://www.weblee.co.uk/2009/06/10/simple-jquery-ajax-with-codeigniter-part-4/comment-page-1/#comment-101</link>
		<dc:creator>Jun</dc:creator>
		<pubDate>Sun, 06 Dec 2009 19:12:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.weblee.co.uk/?p=169#comment-101</guid>
		<description>Thanks for this lecture</description>
		<content:encoded><![CDATA[<p>Thanks for this lecture</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brennan Novak</title>
		<link>http://www.weblee.co.uk/2009/06/10/simple-jquery-ajax-with-codeigniter-part-4/comment-page-1/#comment-95</link>
		<dc:creator>Brennan Novak</dc:creator>
		<pubDate>Fri, 13 Nov 2009 09:01:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.weblee.co.uk/?p=169#comment-95</guid>
		<description>Peter: I think he is using TextMate with the proper &quot;Bundles&quot; installed. Excellent tutorials... so well done. Odd thing happens though... as soon as this is added:

window.setTimeout( function(){ }, 3000);

It stops showing the loading div in Firefox all together. It worked perfect up until then and even after in Safari... strange.</description>
		<content:encoded><![CDATA[<p>Peter: I think he is using TextMate with the proper &#8220;Bundles&#8221; installed. Excellent tutorials&#8230; so well done. Odd thing happens though&#8230; as soon as this is added:</p>
<p>window.setTimeout( function(){ }, 3000);</p>
<p>It stops showing the loading div in Firefox all together. It worked perfect up until then and even after in Safari&#8230; strange.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MEHDI</title>
		<link>http://www.weblee.co.uk/2009/06/10/simple-jquery-ajax-with-codeigniter-part-4/comment-page-1/#comment-64</link>
		<dc:creator>MEHDI</dc:creator>
		<pubDate>Mon, 24 Aug 2009 22:14:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.weblee.co.uk/?p=169#comment-64</guid>
		<description>tanks for the CI series keep it up . Really good work .</description>
		<content:encoded><![CDATA[<p>tanks for the CI series keep it up . Really good work .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lee</title>
		<link>http://www.weblee.co.uk/2009/06/10/simple-jquery-ajax-with-codeigniter-part-4/comment-page-1/#comment-54</link>
		<dc:creator>Lee</dc:creator>
		<pubDate>Wed, 05 Aug 2009 09:07:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.weblee.co.uk/?p=169#comment-54</guid>
		<description>Hi Peter

Been asked this one a few times now :-).

Please &lt;a href=&quot;http://www.weblee.co.uk/codeigniter/codeigniter-preparation/&quot; rel=&quot;nofollow&quot;&gt;ckick here &lt;/a&gt;for ide used.</description>
		<content:encoded><![CDATA[<p>Hi Peter</p>
<p>Been asked this one a few times now <img src='http://www.weblee.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> .</p>
<p>Please <a href="http://www.weblee.co.uk/codeigniter/codeigniter-preparation/" rel="nofollow">ckick here </a>for ide used.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

