I\'m trying to use Jeditable as an inline editing solution.
The default behavior (click on the element to edit it) works quite well, but I would like to activate an
Ok, Ata's answer didn't quite work but it did set me on the right path:
$(document).ready(function() { $('.edit').editable('http://www.example.com/save.php'); $("a.clickme").click(function(){ $('.edit').click(); }); });