This is Jquery plugin which can be used to change the content a its place.
Features:
1. Easy to use
2. Maintain changeability of Jquery
Know Issue:
1. Can take html string also as input
For example:
html:
<div id="editable">I can be changed right here</div>
javascript:
$.('#editable').editAtPlace(function(newtext, oldtext) {
alert("Old Text: " + oldtext + " New Text: " + newtext);
});