jquery-inline-confirmation icon indicating copy to clipboard operation
jquery-inline-confirmation copied to clipboard

Inline Confirmation plugin for jQuery. One of the less obtrusive ways of implementing confirmation dialogues.

Results 3 jquery-inline-confirmation issues
Sort by recently updated
recently updated
newest added

- Using event delegation, to support dynamically generated html (Ember, Backbone, Batman.js etc). - The original event is triggered upon confirmation, to avoid callbacks. Feel free to cherry-pick however you...

If you want to use this plugin with jquery 1.3 change this row: ``` $(this).parent().delegate("span." + action_class, "click", function() { ``` with: ``` $(this+":parent").find("span." + action_class).live("click", function() { ```