<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Edit In Place with AJAX Using jQuery Javascript Library</title>
	<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/</link>
	<description>Examples and tutorials to help you learn JQuery</description>
	<pubDate>Sat, 05 Jul 2008 19:00:05 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1</generator>

	<item>
		<title>By: Joseph Scott</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-72</link>
		<author>Joseph Scott</author>
		<pubDate>Wed, 14 Jun 2006 20:49:11 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-72</guid>
					<description>Having written something similar to this

http://joseph.randomnetworks.com/tag/editinplace

One the things that people pointed out what problems dealing with edits where you delete all of the text.  That was something that I'd only recently addressed (version 0.2.1).

Your demos seem to be returning an error when trying to save an empty string.  There is also no way to go back and edit again once the empty string is saved.</description>
		<content:encoded><![CDATA[<p>Having written something similar to this</p>
<p><a href="http://joseph.randomnetworks.com/tag/editinplace" rel="nofollow">http://joseph.randomnetworks.com/tag/editinplace</a></p>
<p>One the things that people pointed out what problems dealing with edits where you delete all of the text.  That was something that I&#8217;d only recently addressed (version 0.2.1).</p>
<p>Your demos seem to be returning an error when trying to save an empty string.  There is also no way to go back and edit again once the empty string is saved.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jack</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-73</link>
		<author>Jack</author>
		<pubDate>Wed, 14 Jun 2006 21:03:27 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-73</guid>
					<description>Joseph,
I saw your site after I had already started the jQuery code for this tutorial. 

&lt;blockquote&gt;Your demos seem to be returning an error when trying to save an empty string.&lt;/blockquote&gt;

The code in my php script is set to throw an error if $_POST['content'] is empty or null.  This could easily be addressed in the javascript, or the PHP code, or both.  I'm not really concerned about it -- but glad you pointed it out.

This is really more a "proof of concept" than "ready to use code you just plug into your website".

But I do appreciate the feedback.</description>
		<content:encoded><![CDATA[<p>Joseph,<br />
I saw your site after I had already started the jQuery code for this tutorial. </p>
<blockquote><p>Your demos seem to be returning an error when trying to save an empty string.</p></blockquote>
<p>The code in my php script is set to throw an error if $_POST[&#8217;content&#8217;] is empty or null.  This could easily be addressed in the javascript, or the PHP code, or both.  I&#8217;m not really concerned about it &#8212; but glad you pointed it out.</p>
<p>This is really more a &#8220;proof of concept&#8221; than &#8220;ready to use code you just plug into your website&#8221;.</p>
<p>But I do appreciate the feedback.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jack</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-74</link>
		<author>Jack</author>
		<pubDate>Wed, 14 Jun 2006 21:28:23 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-74</guid>
					<description>Joseph,
I went back and tinkered, saw what you were referring to... and made the change. 

Very simple addition of one line to my code, and a slight modification to the PHP.</description>
		<content:encoded><![CDATA[<p>Joseph,<br />
I went back and tinkered, saw what you were referring to&#8230; and made the change. </p>
<p>Very simple addition of one line to my code, and a slight modification to the PHP.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: wesley</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-75</link>
		<author>wesley</author>
		<pubDate>Thu, 15 Jun 2006 07:44:12 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-75</guid>
					<description>lots of sites use some sort of template markup, and just editing the HTML would not be allowed. Maybe you could extend the article just a bit more where you do an ajax call to the server first to get the templated markup. :)</description>
		<content:encoded><![CDATA[<p>lots of sites use some sort of template markup, and just editing the HTML would not be allowed. Maybe you could extend the article just a bit more where you do an ajax call to the server first to get the templated markup. <img src='http://15daysofjquery.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jack</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-76</link>
		<author>Jack</author>
		<pubDate>Thu, 15 Jun 2006 12:26:54 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-76</guid>
					<description>Wesley,
At first I didn't understand what you were suggesting, but then I remembered that a lot of CMS systems require/use template tags which have no meaning outside the template system itself.

Quick plug: my &lt;a href="http://cmslaunch.com" rel="nofollow"&gt;upcoming CMS&lt;/a&gt; does not force you to learn template tags.

Second point is that this demonstration doesn't interact with a database at all. I've left it up to you to modify it as you see fit.

That said, if I have time today I'll consider putting up an example that illustrates your point. I'm sure you've already figured out how to do it, since it's not very complicated.</description>
		<content:encoded><![CDATA[<p>Wesley,<br />
At first I didn&#8217;t understand what you were suggesting, but then I remembered that a lot of CMS systems require/use template tags which have no meaning outside the template system itself.</p>
<p>Quick plug: my <a href="http://cmslaunch.com" rel="nofollow">upcoming CMS</a> does not force you to learn template tags.</p>
<p>Second point is that this demonstration doesn&#8217;t interact with a database at all. I&#8217;ve left it up to you to modify it as you see fit.</p>
<p>That said, if I have time today I&#8217;ll consider putting up an example that illustrates your point. I&#8217;m sure you&#8217;ve already figured out how to do it, since it&#8217;s not very complicated.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: wesley</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-77</link>
		<author>wesley</author>
		<pubDate>Thu, 15 Jun 2006 12:51:02 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-77</guid>
					<description>Another question would be, how to convert the textarea to a full-fledged WYSIWYG editor (using an opensource component like tinymce) Are there any problems with it? Will all button images be reloaded every time I edit the paragraph (IE images bug)</description>
		<content:encoded><![CDATA[<p>Another question would be, how to convert the textarea to a full-fledged WYSIWYG editor (using an opensource component like tinymce) Are there any problems with it? Will all button images be reloaded every time I edit the paragraph (IE images bug)</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Phil</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-80</link>
		<author>Phil</author>
		<pubDate>Thu, 15 Jun 2006 15:25:07 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-80</guid>
					<description>Just wanna say that I've been trying to get into a bit of AJAX or more accurately AHAH for some projects im working on for a while

But scriptaculous and other libraries I've read have the WORST manuals/tutorials ever

I've just read through your site and its been incredibly easy to understand

Thankyou</description>
		<content:encoded><![CDATA[<p>Just wanna say that I&#8217;ve been trying to get into a bit of AJAX or more accurately AHAH for some projects im working on for a while</p>
<p>But scriptaculous and other libraries I&#8217;ve read have the WORST manuals/tutorials ever</p>
<p>I&#8217;ve just read through your site and its been incredibly easy to understand</p>
<p>Thankyou</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jack</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-81</link>
		<author>Jack</author>
		<pubDate>Thu, 15 Jun 2006 15:29:38 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-81</guid>
					<description>Phil,
You're welcome.  Thank you for the compliment.</description>
		<content:encoded><![CDATA[<p>Phil,<br />
You&#8217;re welcome.  Thank you for the compliment.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jair</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-113</link>
		<author>Jair</author>
		<pubDate>Sun, 25 Jun 2006 04:36:02 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-113</guid>
					<description>Like the simplicity of it, however I found an error in second example. Here are the steps to replicate:

1) open paragraph 3 editable field and make changes, but do not save;
2) open paragraph 2 editable field and make changes, but do not save;
3) save paragraph 3 editable field. gets two popups instead of one.
4) save paragraph 2 editable field.

After this you can no longer edit the lower paragraph. Seems to also apply to 2 then 1, and also 3 then 1 as well. However it doesn't seem to have any problems if you open in top to bottom order. I didn't test all 3 paragraphs at the same time in various orderings.

Any ideas why this is happening?</description>
		<content:encoded><![CDATA[<p>Like the simplicity of it, however I found an error in second example. Here are the steps to replicate:</p>
<p>1) open paragraph 3 editable field and make changes, but do not save;<br />
2) open paragraph 2 editable field and make changes, but do not save;<br />
3) save paragraph 3 editable field. gets two popups instead of one.<br />
4) save paragraph 2 editable field.</p>
<p>After this you can no longer edit the lower paragraph. Seems to also apply to 2 then 1, and also 3 then 1 as well. However it doesn&#8217;t seem to have any problems if you open in top to bottom order. I didn&#8217;t test all 3 paragraphs at the same time in various orderings.</p>
<p>Any ideas why this is happening?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jack</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-115</link>
		<author>Jack</author>
		<pubDate>Mon, 26 Jun 2006 16:21:42 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-115</guid>
					<description>I'll have to take a closer look.  In the meantime, I suppose you're better off using the other example I provided.</description>
		<content:encoded><![CDATA[<p>I&#8217;ll have to take a closer look.  In the meantime, I suppose you&#8217;re better off using the other example I provided.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jair</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-117</link>
		<author>Jair</author>
		<pubDate>Mon, 26 Jun 2006 22:21:24 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-117</guid>
					<description>Or make it so when you change to edit mode for one item, it disables the ability to open the other editable items until you save the current entry.</description>
		<content:encoded><![CDATA[<p>Or make it so when you change to edit mode for one item, it disables the ability to open the other editable items until you save the current entry.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Andre P.C.</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-149</link>
		<author>Andre P.C.</author>
		<pubDate>Wed, 05 Jul 2006 18:02:18 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-149</guid>
					<description>Haha, I can't believe it. I was searching for a sort of thing like that (like the ready-to-edit descriptions of flickr) to use on a gallery page I am doing and couldn't find anywhere, so I figured how to do it myself (using a mix of regular js, jQuery and ASP). Then, when I am finally done (after weeks of struggle, because I am such a newb on all of this), I find your script, and it's so much better that it almost made me cry, hahaha.
Good work on this one, I hope I can use it on a next project.</description>
		<content:encoded><![CDATA[<p>Haha, I can&#8217;t believe it. I was searching for a sort of thing like that (like the ready-to-edit descriptions of flickr) to use on a gallery page I am doing and couldn&#8217;t find anywhere, so I figured how to do it myself (using a mix of regular js, jQuery and ASP). Then, when I am finally done (after weeks of struggle, because I am such a newb on all of this), I find your script, and it&#8217;s so much better that it almost made me cry, hahaha.<br />
Good work on this one, I hope I can use it on a next project.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Rob Morgan</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-318</link>
		<author>Rob Morgan</author>
		<pubDate>Fri, 04 Aug 2006 22:13:11 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-318</guid>
					<description>This is handy, well written Jack. Looking forward to your CMS. Do you know of anyone who has taken this to the next level and got the data in/out of MySql? Could you give us some pointers? 

Keep up the great work. :)

Rob</description>
		<content:encoded><![CDATA[<p>This is handy, well written Jack. Looking forward to your CMS. Do you know of anyone who has taken this to the next level and got the data in/out of MySql? Could you give us some pointers? </p>
<p>Keep up the great work. <img src='http://15daysofjquery.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Rob</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jack</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-323</link>
		<author>Jack</author>
		<pubDate>Sat, 05 Aug 2006 14:49:35 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-323</guid>
					<description>Sure. In the function saveChanges you'd likely use ajax to post the data to a file that can (1) read the data (2) verify that it's legit (3) save to a database (4) respond with an error or success message.

With jQuery I'd recommend the $.post method. See my tutorial on AJAX with jQuery and the information on the jQuery website.

The real tricky part with the edit in place code that edits individual p tags is that the database script would need to either find the specific p tag and replace it... or more likely, you'd send over ALL of the editable regions and have the database script replace the entire entry... 

I don't know if that last part made much sense the way I wrote it.

I know you'd like to have a prewritten snippet but it's just not something I have time to whip up right now. I have a lot of projects I'm juggling, including the cms.

I hope my answer points you in the right direction and if I get time to write up some code for the database part, I might do so.

Also, see the jQuery plugin for edit in place at
http://www.dyve.net/jquery/?editable

I just looked at the code and it's a lot fancier than mine.  

$(document).ready(function() {&lt;br /&gt;
$(&#34;.edit_inline&#34;).editable(&#34;post.php&#34;, { saving:&#34;&#60;img 
src='img/indicator.gif'&#62;&#34;, extraParams:{id:42} });&lt;br /&gt;
}); 

Where post.php is the database interaction file. id=42 could be an extra variable to verify the post is legit (you'd need to tweak this a bit to improve security).</description>
		<content:encoded><![CDATA[<p>Sure. In the function saveChanges you&#8217;d likely use ajax to post the data to a file that can (1) read the data (2) verify that it&#8217;s legit (3) save to a database (4) respond with an error or success message.</p>
<p>With jQuery I&#8217;d recommend the $.post method. See my tutorial on AJAX with jQuery and the information on the jQuery website.</p>
<p>The real tricky part with the edit in place code that edits individual p tags is that the database script would need to either find the specific p tag and replace it&#8230; or more likely, you&#8217;d send over ALL of the editable regions and have the database script replace the entire entry&#8230; </p>
<p>I don&#8217;t know if that last part made much sense the way I wrote it.</p>
<p>I know you&#8217;d like to have a prewritten snippet but it&#8217;s just not something I have time to whip up right now. I have a lot of projects I&#8217;m juggling, including the cms.</p>
<p>I hope my answer points you in the right direction and if I get time to write up some code for the database part, I might do so.</p>
<p>Also, see the jQuery plugin for edit in place at<br />
<a href="http://www.dyve.net/jquery/?editable" rel="nofollow">http://www.dyve.net/jquery/?editable</a></p>
<p>I just looked at the code and it&#8217;s a lot fancier than mine.  </p>
<p>$(document).ready(function() {<br />
$(&quot;.edit_inline&quot;).editable(&quot;post.php&quot;, { saving:&quot;&lt;img<br />
src=&#8217;img/indicator.gif&#8217;&gt;&quot;, extraParams:{id:42} });<br />
}); </p>
<p>Where post.php is the database interaction file. id=42 could be an extra variable to verify the post is legit (you&#8217;d need to tweak this a bit to improve security).</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Dave</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-576</link>
		<author>Dave</author>
		<pubDate>Fri, 17 Nov 2006 16:46:56 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-576</guid>
					<description>The only think that i don't like about this is that it only uses the p tag...

what if you give a span the class/id of editInPlace... when you click save or cancel it will put the paragraph tag back in the DOM instead of the span tag, or whatever else you decide to use?

My question is, how do you find out what the original element was??</description>
		<content:encoded><![CDATA[<p>The only think that i don&#8217;t like about this is that it only uses the p tag&#8230;</p>
<p>what if you give a span the class/id of editInPlace&#8230; when you click save or cancel it will put the paragraph tag back in the DOM instead of the span tag, or whatever else you decide to use?</p>
<p>My question is, how do you find out what the original element was??</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jack</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-633</link>
		<author>Jack</author>
		<pubDate>Fri, 24 Nov 2006 15:40:02 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-633</guid>
					<description>Dave,
Here... check out this plugin.  It might be closer to what you're looking for:

http://www.dyve.net/jquery/?editable</description>
		<content:encoded><![CDATA[<p>Dave,<br />
Here&#8230; check out this plugin.  It might be closer to what you&#8217;re looking for:</p>
<p><a href="http://www.dyve.net/jquery/?editable" rel="nofollow">http://www.dyve.net/jquery/?editable</a></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Miklo</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-1965</link>
		<author>Miklo</author>
		<pubDate>Tue, 16 Jan 2007 00:07:25 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-1965</guid>
					<description>It's a bugg if you open all three then press cancel in demo.php.. you can not open the middle open :)</description>
		<content:encoded><![CDATA[<p>It&#8217;s a bugg if you open all three then press cancel in demo.php.. you can not open the middle open <img src='http://15daysofjquery.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Ritesh Agrawal</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-2903</link>
		<author>Ritesh Agrawal</author>
		<pubDate>Thu, 15 Feb 2007 00:55:36 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-2903</guid>
					<description>Is it possible to get fckeditor or any other rich text editor in place of textarea for edit inplace

Please let me know if have a tutorial on it

Regards,
Ritesh</description>
		<content:encoded><![CDATA[<p>Is it possible to get fckeditor or any other rich text editor in place of textarea for edit inplace</p>
<p>Please let me know if have a tutorial on it</p>
<p>Regards,<br />
Ritesh</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jack</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-2904</link>
		<author>Jack</author>
		<pubDate>Thu, 15 Feb 2007 02:30:07 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-2904</guid>
					<description>No need to reinvent the wheel:

http://jquery.com/docs/Plugins/tinyMCE/

Also a ton of plugins for edit in place (most of which I believe were released after this tutorial, but not because of it, AFAIK)

http://docs.jquery.com/Plugins</description>
		<content:encoded><![CDATA[<p>No need to reinvent the wheel:</p>
<p><a href="http://jquery.com/docs/Plugins/tinyMCE/" rel="nofollow">http://jquery.com/docs/Plugins/tinyMCE/</a></p>
<p>Also a ton of plugins for edit in place (most of which I believe were released after this tutorial, but not because of it, AFAIK)</p>
<p><a href="http://docs.jquery.com/Plugins" rel="nofollow">http://docs.jquery.com/Plugins</a></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Angelo</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-7230</link>
		<author>Angelo</author>
		<pubDate>Wed, 30 May 2007 19:49:01 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-7230</guid>
					<description>thanks for the script, it works well. I am wondering how to pass additional parameters to the PHP file in the POST? Say that I have a field with a hidden value I would like to pass this. I know its part of the $.post but Im not sure how to get that value from the HTML file. 

Please advise</description>
		<content:encoded><![CDATA[<p>thanks for the script, it works well. I am wondering how to pass additional parameters to the PHP file in the POST? Say that I have a field with a hidden value I would like to pass this. I know its part of the $.post but Im not sure how to get that value from the HTML file. </p>
<p>Please advise</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Angelo</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-7231</link>
		<author>Angelo</author>
		<pubDate>Wed, 30 May 2007 20:25:58 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-7231</guid>
					<description>With regards to my previous post Im trying to get the value as follows in JS: 

$("input").val("hidden")

but doesn't seem to be correct perhaps someone can guide me on that? Thanks in advance.</description>
		<content:encoded><![CDATA[<p>With regards to my previous post Im trying to get the value as follows in JS: </p>
<p>$(&#8221;input&#8221;).val(&#8221;hidden&#8221;)</p>
<p>but doesn&#8217;t seem to be correct perhaps someone can guide me on that? Thanks in advance.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jack</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-7271</link>
		<author>Jack</author>
		<pubDate>Thu, 31 May 2007 13:47:14 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-7271</guid>
					<description>jquery has a form submit with ajax plugin that you should check out. Go to the main jquery.com website and view the plugins, it's one of the official ones.</description>
		<content:encoded><![CDATA[<p>jquery has a form submit with ajax plugin that you should check out. Go to the main jquery.com website and view the plugins, it&#8217;s one of the official ones.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Steve</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-7426</link>
		<author>Steve</author>
		<pubDate>Tue, 05 Jun 2007 00:27:19 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-7426</guid>
					<description>Jack, you are a patient man!  Thanks much for taking the time to put together this tutorial.  Nice stuff.</description>
		<content:encoded><![CDATA[<p>Jack, you are a patient man!  Thanks much for taking the time to put together this tutorial.  Nice stuff.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Due</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-11180</link>
		<author>Due</author>
		<pubDate>Wed, 15 Aug 2007 06:51:41 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-11180</guid>
					<description>Jack, please help.  I am using inline edit for my application but I ran into 2 problems:
1) If use type in the long message it will display offscreen to the right(with the scroll bar) how can i format the result into a fix width.  I tried to enclose within div tag or table but it has problem
2) After user type in message i want to put in pre tag just to avoid user put in some code example continuous popup how can i do that?</description>
		<content:encoded><![CDATA[<p>Jack, please help.  I am using inline edit for my application but I ran into 2 problems:<br />
1) If use type in the long message it will display offscreen to the right(with the scroll bar) how can i format the result into a fix width.  I tried to enclose within div tag or table but it has problem<br />
2) After user type in message i want to put in pre tag just to avoid user put in some code example continuous popup how can i do that?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jack</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-11209</link>
		<author>Jack</author>
		<pubDate>Wed, 15 Aug 2007 19:23:59 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-11209</guid>
					<description>Have you tried any of the plugins on the jQuery page?
http://www.dyve.net/jquery/?editable
http://www.appelsiini.net/~tuupola/javascript/jEditable/
http://joshhundley.com/my-work/teditable-in-place-editing-for-tables/
http://davehauenstein.com/blog/archives/28</description>
		<content:encoded><![CDATA[<p>Have you tried any of the plugins on the jQuery page?<br />
<a href="http://www.dyve.net/jquery/?editable" rel="nofollow">http://www.dyve.net/jquery/?editable</a><br />
<a href="http://www.appelsiini.net/~tuupola/javascript/jEditable/" rel="nofollow">http://www.appelsiini.net/~tuupola/javascript/jEditable/</a><br />
<a href="http://joshhundley.com/my-work/teditable-in-place-editing-for-tables/" rel="nofollow">http://joshhundley.com/my-work/teditable-in-place-editing-for-tables/</a><br />
<a href="http://davehauenstein.com/blog/archives/28" rel="nofollow">http://davehauenstein.com/blog/archives/28</a></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: &#60;CONTENT /&#62; v.4 &#187; links for 2007-10-06</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-13896</link>
		<author>&#60;CONTENT /&#62; v.4 &#187; links for 2007-10-06</author>
		<pubDate>Sat, 06 Oct 2007 02:18:19 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-13896</guid>
					<description>[...] Edit In Place with AJAX Using jQuery Javascript Library - Javascript Tutorials - 15 Days Of jQuery (tags: jquery edit_in_place ajax javascript elangdell) [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Edit In Place with AJAX Using jQuery Javascript Library - Javascript Tutorials - 15 Days Of jQuery (tags: jquery edit_in_place ajax javascript elangdell) [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: 240 plugins jquery : sastgroup.com</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-17744</link>
		<author>240 plugins jquery : sastgroup.com</author>
		<pubDate>Wed, 21 Nov 2007 15:07:01 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-17744</guid>
					<description>[...] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: chinatian &#8250; jQuery插件超级多</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-19066</link>
		<author>chinatian &#8250; jQuery插件超级多</author>
		<pubDate>Thu, 06 Dec 2007 01:18:50 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-19066</guid>
					<description>[...] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: CodeRobots &#8217;s Blog &#187; Blog Archive &#187; 240多个jQuery插件</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-20093</link>
		<author>CodeRobots &#8217;s Blog &#187; Blog Archive &#187; 240多个jQuery插件</author>
		<pubDate>Mon, 17 Dec 2007 02:38:52 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-20093</guid>
					<description>[...] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Alexandre Magno</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-20174</link>
		<author>Alexandre Magno</author>
		<pubDate>Mon, 17 Dec 2007 19:22:16 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-20174</guid>
					<description>There´s some point that was leaved behind. When you back the text if the people cancel the edit, the dom is updated and loss the events, so you just could click and edit once, when you call the function of cancel, it has to reattach the event of click to work well...</description>
		<content:encoded><![CDATA[<p>There´s some point that was leaved behind. When you back the text if the people cancel the edit, the dom is updated and loss the events, so you just could click and edit once, when you call the function of cancel, it has to reattach the event of click to work well&#8230;</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Enjoy what you have! &#187; Blog Archive &#187; 强烈推荐：240多个jQuery插件</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-20947</link>
		<author>Enjoy what you have! &#187; Blog Archive &#187; 强烈推荐：240多个jQuery插件</author>
		<pubDate>Thu, 27 Dec 2007 02:27:42 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-20947</guid>
					<description>[...] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Diversos Links para desenvoledores de javascript &#124; Blog do teo</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-21502</link>
		<author>Diversos Links para desenvoledores de javascript &#124; Blog do teo</author>
		<pubDate>Tue, 01 Jan 2008 11:39:47 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-21502</guid>
					<description>[...] Edit in Place with Ajax using jQuery. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Edit in Place with Ajax using jQuery. [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jquery的N个插件 &#187; NeiLyi.cn [尼尔.易] - PHP,Jquery,代码,点滴</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-21555</link>
		<author>Jquery的N个插件 &#187; NeiLyi.cn [尼尔.易] - PHP,Jquery,代码,点滴</author>
		<pubDate>Wed, 02 Jan 2008 07:32:29 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-21555</guid>
					<description>[...] - edit in place plugin for jQuery. jQuery editable.jQuery Disable Text Select Plugin.Edit in Place with Ajax using jQuery.jQuery Plugin - Another In-Place Editor.TableEditor.tEditable - in place table editing for jQuery. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] - edit in place plugin for jQuery. jQuery editable.jQuery Disable Text Select Plugin.Edit in Place with Ajax using jQuery.jQuery Plugin - Another In-Place Editor.TableEditor.tEditable - in place table editing for jQuery. [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: 幽谷寒泉的BLOG &#187; 强烈推荐：240多个jQuery插件</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-23927</link>
		<author>幽谷寒泉的BLOG &#187; 强烈推荐：240多个jQuery插件</author>
		<pubDate>Fri, 25 Jan 2008 02:44:04 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-23927</guid>
					<description>[...] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: 风筝博客</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-24105</link>
		<author>风筝博客</author>
		<pubDate>Sun, 27 Jan 2008 03:54:32 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-24105</guid>
					<description>[...] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: jit</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-25012</link>
		<author>jit</author>
		<pubDate>Mon, 04 Feb 2008 23:47:32 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-25012</guid>
					<description>hi. i searched whole internet about inline editing and the title "Edit In Place With Ajax 2" helped me the much.but you havent been share the test.php. i am searching inline editing code that helps me to make multiple edit in place operation and have contacted with database. i know php well but i am new in ajax. at least could you share the test.php? thank you. i tried to do my own but it didnt work

www.fubace.com/adminpan</description>
		<content:encoded><![CDATA[<p>hi. i searched whole internet about inline editing and the title &#8220;Edit In Place With Ajax 2&#8243; helped me the much.but you havent been share the test.php. i am searching inline editing code that helps me to make multiple edit in place operation and have contacted with database. i know php well but i am new in ajax. at least could you share the test.php? thank you. i tried to do my own but it didnt work</p>
<p><a href="http://www.fubace.com/adminpan" rel="nofollow">www.fubace.com/adminpan</a></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jack</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-25074</link>
		<author>Jack</author>
		<pubDate>Tue, 05 Feb 2008 14:43:14 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-25074</guid>
					<description>Jit,
I'm about to do a site redesign and update of the tutorials, with code available.</description>
		<content:encoded><![CDATA[<p>Jit,<br />
I&#8217;m about to do a site redesign and update of the tutorials, with code available.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Roland Hentschel</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-25435</link>
		<author>Roland Hentschel</author>
		<pubDate>Fri, 08 Feb 2008 10:59:50 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-25435</guid>
					<description>Hi,

My problem is just the same as "Jit",
So I'm looking forward for the site redesign.
However, I'd like to read and write the contents of the editable fields from external files - as an alternative method to the MySQL-database ...
Have been messing around, trying to code that thing myself, but still without a usable result ...

( -: roland :- )</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>My problem is just the same as &#8220;Jit&#8221;,<br />
So I&#8217;m looking forward for the site redesign.<br />
However, I&#8217;d like to read and write the contents of the editable fields from external files - as an alternative method to the MySQL-database &#8230;<br />
Have been messing around, trying to code that thing myself, but still without a usable result &#8230;</p>
<p>( -: roland :- )</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: LongWay's Blog &#187; Blog Archive 精彩的jQuery插件</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-26056</link>
		<author>LongWay's Blog &#187; Blog Archive 精彩的jQuery插件</author>
		<pubDate>Wed, 13 Feb 2008 05:36:43 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-26056</guid>
					<description>[...] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Ressources pour le développement web et WordPress &#187; i-noova*</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-26572</link>
		<author>Ressources pour le développement web et WordPress &#187; i-noova*</author>
		<pubDate>Sun, 17 Feb 2008 15:29:17 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-26572</guid>
					<description>[...] Edit in Place with Ajax using jQuery [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Edit in Place with Ajax using jQuery [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Grom&#8217;s home &#187; Blog Archive &#187; [转]240多个jQuery插件</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-28499</link>
		<author>Grom&#8217;s home &#187; Blog Archive &#187; [转]240多个jQuery插件</author>
		<pubDate>Tue, 11 Mar 2008 01:43:05 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-28499</guid>
					<description>[...] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: links for 2008-03-15 &#171; /tmp</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-28860</link>
		<author>links for 2008-03-15 &#171; /tmp</author>
		<pubDate>Sat, 15 Mar 2008 16:18:55 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-28860</guid>
					<description>[...] Edit In Place with AJAX Using jQuery Javascript Library (tags: jquery) [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Edit In Place with AJAX Using jQuery Javascript Library (tags: jquery) [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: 百变贝贝 &#187; 上百个让你事半功倍的jquery插件</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-29159</link>
		<author>百变贝贝 &#187; 上百个让你事半功倍的jquery插件</author>
		<pubDate>Thu, 20 Mar 2008 01:20:54 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-29159</guid>
					<description>[...] Jeditable - edit in place plugin for jQuery jQuery editable jQuery Disable Text Select Plugin Edit in Place with Ajax using jQuery jQuery Plugin - Another In-Place Editor TableEditor tEditable - in place table editing for [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Jeditable - edit in place plugin for jQuery jQuery editable jQuery Disable Text Select Plugin Edit in Place with Ajax using jQuery jQuery Plugin - Another In-Place Editor TableEditor tEditable - in place table editing for [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: 240 adet jquery ekelntisi - Volkan Şentürk</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-30775</link>
		<author>240 adet jquery ekelntisi - Volkan Şentürk</author>
		<pubDate>Wed, 09 Apr 2008 10:01:40 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-30775</guid>
					<description>[...] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: jQuery插件集合.(240) &#124; Sapling soliloquize</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-32504</link>
		<author>jQuery插件集合.(240) &#124; Sapling soliloquize</author>
		<pubDate>Mon, 28 Apr 2008 15:56:46 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-32504</guid>
					<description>[...] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: 强烈推荐：240多个jQuery插件 - 胡言乱语</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-33286</link>
		<author>强烈推荐：240多个jQuery插件 - 胡言乱语</author>
		<pubDate>Sat, 03 May 2008 04:38:17 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-33286</guid>
					<description>[...] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: pupkarik</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-33294</link>
		<author>pupkarik</author>
		<pubDate>Sat, 03 May 2008 05:49:45 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-33294</guid>
					<description>xdvdsfvd fdgsd 
fdsaiuwa dfgdsgfs</description>
		<content:encoded><![CDATA[<p>xdvdsfvd fdgsd<br />
fdsaiuwa dfgdsgfs</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: &#187; 1000 ressources pour le développement web et WordPress : la grosse grosse liste &#171; css4design : des css pour votre design html</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-35844</link>
		<author>&#187; 1000 ressources pour le développement web et WordPress : la grosse grosse liste &#171; css4design : des css pour votre design html</author>
		<pubDate>Fri, 16 May 2008 11:31:18 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-35844</guid>
					<description>[...] Edit in Place with Ajax using jQuery [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Edit in Place with Ajax using jQuery [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: 240 plugins jquery &#124; Computer and Technoloy News</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-35948</link>
		<author>240 plugins jquery &#124; Computer and Technoloy News</author>
		<pubDate>Sat, 17 May 2008 06:17:37 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-35948</guid>
					<description>[...] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: 25 Excellent Ajax Techniques and Examples - Six Revisions</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-38485</link>
		<author>25 Excellent Ajax Techniques and Examples - Six Revisions</author>
		<pubDate>Tue, 03 Jun 2008 03:57:48 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-38485</guid>
					<description>[...] 8. Edit In Place with AJAX Using jQuery [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] 8. Edit In Place with AJAX Using jQuery [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: 25 Excellent Ajax Techniques and Examples :: john010117.com</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-38636</link>
		<author>25 Excellent Ajax Techniques and Examples :: john010117.com</author>
		<pubDate>Tue, 03 Jun 2008 23:21:15 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-38636</guid>
					<description>[...] Edit in Place with Ajax Using jQuery - In this example, users are given the ability to edit the XHTML of the web page they’re currently viewing. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Edit in Place with Ajax Using jQuery - In this example, users are given the ability to edit the XHTML of the web page they’re currently viewing. [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: 25个优秀的Ajax技术和实例 &#187; Life is a struggle =.=！</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-38903</link>
		<author>25个优秀的Ajax技术和实例 &#187; Life is a struggle =.=！</author>
		<pubDate>Thu, 05 Jun 2008 08:52:59 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-38903</guid>
					<description>[...] 8.Edit-in-Place with jQuery [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] 8.Edit-in-Place with jQuery [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: AddyMob &#187; Blog Archive &#187; 25 Excellent Ajax Techniques and Examples</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-39115</link>
		<author>AddyMob &#187; Blog Archive &#187; 25 Excellent Ajax Techniques and Examples</author>
		<pubDate>Fri, 06 Jun 2008 18:01:24 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-39115</guid>
					<description>[...] 8. Edit In Place with AJAX Using jQuery [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] 8. Edit In Place with AJAX Using jQuery [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: 键盘人生 - 强烈推荐：240多个jQuery插件</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-40283</link>
		<author>键盘人生 - 强烈推荐：240多个jQuery插件</author>
		<pubDate>Sat, 14 Jun 2008 13:57:10 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-40283</guid>
					<description>[...] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: 0 n 8 = ? &#187; Blog Archive &#187; 25 Ajax Dersi</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-40757</link>
		<author>0 n 8 = ? &#187; Blog Archive &#187; 25 Ajax Dersi</author>
		<pubDate>Mon, 16 Jun 2008 09:50:34 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-40757</guid>
					<description>[...] daha ayrıntı burada.6.Ajax ve PHP ile Takvim7.Google Takvimi&#8217; ni Sitenize Ajax İle Entegre8. Edit In Place with AJAX Using jQuery9.Ajax İle Oylama10.Ajax İle Dosya Upload11.Ajax ve PHP ile mail list oluşturmak12.CAPTCHA ile [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] daha ayrıntı burada.6.Ajax ve PHP ile Takvim7.Google Takvimi&#8217; ni Sitenize Ajax İle Entegre8. Edit In Place with AJAX Using jQuery9.Ajax İle Oylama10.Ajax İle Dosya Upload11.Ajax ve PHP ile mail list oluşturmak12.CAPTCHA ile [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Smashing Coding &#187; 100+ Scripts pour JQuery</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-42160</link>
		<author>Smashing Coding &#187; 100+ Scripts pour JQuery</author>
		<pubDate>Sat, 21 Jun 2008 23:33:17 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-42160</guid>
					<description>[...] Edit in Place with Ajax using jQuery. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Edit in Place with Ajax using jQuery. [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: 经典240多个jQuery插件 &#124; 喜羊羊与懒羊羊的窝</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-43474</link>
		<author>经典240多个jQuery插件 &#124; 喜羊羊与懒羊羊的窝</author>
		<pubDate>Sat, 28 Jun 2008 03:16:31 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-43474</guid>
					<description>[...] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Blox.Svbasi &#183; 100+ Scripts pour JQuery</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-43539</link>
		<author>Blox.Svbasi &#183; 100+ Scripts pour JQuery</author>
		<pubDate>Sat, 28 Jun 2008 14:26:38 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-43539</guid>
					<description>[...] Edit in Place with Ajax using jQuery. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Edit in Place with Ajax using jQuery. [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Blox.Svbasi &#183; 100+ Scripts pour JQuery</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-43540</link>
		<author>Blox.Svbasi &#183; 100+ Scripts pour JQuery</author>
		<pubDate>Sat, 28 Jun 2008 14:26:38 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-43540</guid>
					<description>[...] Edit in Place with Ajax using jQuery. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Edit in Place with Ajax using jQuery. [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Hidden Pixels - JQuery Examples</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-43852</link>
		<author>Hidden Pixels - JQuery Examples</author>
		<pubDate>Mon, 30 Jun 2008 09:42:25 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-43852</guid>
					<description>[...] Edit in Place with Ajax using jQuery. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Edit in Place with Ajax using jQuery. [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: jQueryTips &#187; รวมฮิต jQuery Plugins มากกว่า 200 รายการ</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-44139</link>
		<author>jQueryTips &#187; รวมฮิต jQuery Plugins มากกว่า 200 รายการ</author>
		<pubDate>Tue, 01 Jul 2008 17:02:48 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-44139</guid>
					<description>[...] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Jeditable - edit in place plugin for jQuery. jQuery editable. jQuery Disable Text Select Plugin. Edit in Place with Ajax using jQuery. jQuery Plugin - Another In-Place Editor. TableEditor. tEditable - in place table editing for [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: 一杯紅茶喜相逢~~ &#187; Blog Archive &#187; Jquery Edit in Place 2</title>
		<link>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-44385</link>
		<author>一杯紅茶喜相逢~~ &#187; Blog Archive &#187; Jquery Edit in Place 2</author>
		<pubDate>Wed, 02 Jul 2008 09:39:42 +0000</pubDate>
		<guid>http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/#comment-44385</guid>
					<description>[...] http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/  Posted in JavaScript &#124;      Leave a Comment [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] <a href="http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/" rel="nofollow">http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/</a>  Posted in JavaScript |      Leave a Comment [&#8230;]</p>
]]></content:encoded>
				</item>
</channel>
</rss>
