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 element by clicking on another element.
For example clicking on a.activateEdit will activate the next div.edit (obviously should be done using jQuery selectors).
I've looked into jEditable docs for this, but couldn't find the right syntax
FYI, the default jeditable syntax is something along the lines of:
$(document).ready(function() {
$('.edit').editable('http://www.example.com/save.php');
});
*Edit: found a better solution *