Created
July 21, 2009 18:18
-
-
Save ntulip/151499 to your computer and use it in GitHub Desktop.
edit in place - jquery
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Creates an edit box to replace any element, along with a callback | |
function to handle the return value. Call this in real time, not | |
on page load: for example, call it from the onclick of a link or | |
dbclick of a paragraph: | |
$('#editable-thing').bind('click', function(){ | |
$(this).edit_in_place(function(editable_thing, value){alert("You typed "+value)}); | |
}); | |
How it works: | |
Hides the original element and adds an edit box next to it, the same size. | |
After editing, shows the original object again and removes the edit box. | |
!! NOTE !! It is up to the callback to change the original object if necessary. | |
*/ | |
$.fn.edit_in_place = function(callback){ | |
var $element = this; | |
if($element.length>1){console.error("Call $().edit_in_place only on a singular jquery object.");} | |
var $edit = $('<input type="text" class="edit_in_place" />'); | |
$edit.css({'height' : $element.height()-2, 'width' : $element.width()-2}); | |
$element.hide(); | |
$element.after($edit); | |
$edit.focus(); | |
$edit.bind('blur', function(){ // on blur, forget edits and reset. | |
$edit.remove(); | |
$element.show(); | |
}); | |
$edit.keydown(function(e){ | |
if(e.which===27)$edit.blur(); // blur on Esc: see above | |
if(e.which===13 || e.which===9){ // Enter or Tab: run the callback with the value | |
e.preventDefault(); | |
$edit.hide(); | |
$element.show(); | |
if($edit.val()!=='') callback($element, $edit.val()); | |
// This causes a TypeError, no idea why! I'd rather use it... | |
// callback.apply($element, $edit.val()); | |
$edit.remove(); | |
} | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment