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

for jquery 1.3

Open ed3 opened this issue 11 years ago • 0 comments

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() {

ed3 avatar Apr 15 '14 11:04 ed3