Native editing with jQuery

Are there any recommendations for editing inline using jQuery?

I know that here I do not use the correct term, but basically you click on some text, and dynamically the area changes to an editable input field using the submit button.

Are there any built-in features with jQuery?

+4
source share
3 answers

jQuery has nothing built in as far as I know, but check out Jeditable , which is a jQuery plugin.

+8
source

You can do something like this:

<input type="text" value="someText" id="editableText" class="hideBorder"/> $('#editableText').toggle(function() { $(this).removeClass('hideBorder'); }, function() { $(this).addClass('hideBorder'); }); .hideBorder { border: 0; } 
+2
source

Check out the inedit jquery plugin

+2
source

All Articles