Skip to content

Instantly share code, notes, and snippets.

@tuupola
Created January 27, 2012 23:44
Show Gist options
  • Save tuupola/1691623 to your computer and use it in GitHub Desktop.
Save tuupola/1691623 to your computer and use it in GitHub Desktop.
<pre><div class="edit" id="unique_id">Editable text</div>
<a href="#" class="edit_trigger">Edit me!!</a></pre>
$(".edit").editable("http://www.example.com/save.php", {
event : "edit"
});
/* Find and trigger "edit" event on correct Jeditable instance. */
$(".edit_trigger").bind("click", function() {
$(this).prev().trigger("edit");
});</pre>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment