up vote 0 down vote favorite
share [g+] share [fb]

I have this, text, that when you click on it, you can edit it and when you click somewhere else it will store it to the database(by sending ajax call), and your edited new text will show.

Here is it: http://jsbin.com/ewihu3

Try clicking at the text, and you will see it become a field and so.

Here's my current code: http://jsbin.com/ewihu3/edit

I know how to make ajax call in jquery, but i dont know how to make a on click function that turns the text to a field with the text and when done it should be text-format again with the new text you just edited it too..

How can i do this?

link|improve this question

77% accept rate
3  
Yes, this could be done simpler in jQuery. JQuery Ajax docs: api.jquery.com/category/ajax – Pekka Aug 31 '10 at 13:29
1  
Yes, it would be dramatically simpler with jQuery. Now, you'd have to weigh that advantage against the disadvantage of pulling in the whole jQuery library. My feeling is that it's generally a good idea, but that's just me. – Pointy Aug 31 '10 at 13:30
1  
Voted to close - Not a real question - Yes it can be done. Are you expecting someone to write it for you? Or did you just want a yes/no answer? – GenericTypeTea Aug 31 '10 at 13:30
feedback

closed as not a real question by GenericTypeTea, abatishchev, redsquare, Andy E, jAndy Aug 31 '10 at 13:56

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ.

3 Answers

This is simple:

<span>Click to edit me</span>​

$('span').bind('click', function(){
   this.contentEditable = true;
});​

http://www.jsfiddle.net/7A6MQ/2/

link|improve this answer
That can be done easier ;), besides, that's HTML5 only. Also, it makes no sense to use javascript to set it to true... – Dykam Aug 31 '10 at 13:51
I want it to become an input field instead & where should what variable should i use to get the new text that has been edited? In order to make the ajax call(that inserts the new updated text to the database) – Karem Aug 31 '10 at 13:51
@Dykam: I wasn't too serious about the answer, but I'm really interested how you like to change the state without javascript. – jAndy Aug 31 '10 at 13:56
<span contenteditable="true">Click to edit me</span>​ Not changing element state, but setting it correctly at first. – Dykam Sep 1 '10 at 8:07
@Dykam: You didn't get the point I guess. OP's intention was to make something editable when clicking on it. – jAndy Sep 1 '10 at 8:18
feedback

Yes, this can be done easier with jQuery.

link|improve this answer
feedback

I would not use contentEditable as it is not supported by older IE versions.

link|improve this answer
1  
This would be better as a comment on an answer rather than a standalone answer. – Geoff Appleford Aug 31 '10 at 13:50
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.