Ajax Bestiary: A Javascript Field Guide
 
Ajax Bestiary: A Javascript Field Guide
 
 

Streamline Your Interfaces with Jeditable

Posted by Don Albrecht

after click 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

  • No Related Post

1 Comment

Leave a Reply