Streamline Your Interfaces with Jeditable
October 29th, 2007
Jeditable is a wonderfully simple plugin to turn any block of text into a mini ajax form. All you need is a single line of code:
$(document).ready(function() {
$(".edit").editable("http://www.example.com/save.php");
});
Where “.edit” is the selector for the block of text and the url is the post address.
Other Features:
- Support for textareas, selects & text boxes.
- CSS styling available
- Onblur support
- Custom Submits
- pulldown data can be pulled from URL for selects
- Custom callbacks support
- Custom field support
Check it out here:
http://www.appelsiini.net/projects/jeditable


Previous Post
Next Post

1 Comment
October 30th, 2007 at 6:14 am
[…] I brought you Jeditable a simple plugin to handle edit in place Ajax events. Today I bring you an Autocompleting, […]
Leave a Reply