17
Add "Copy to Clipboard" buttons to links found in Refer a Friend widget
in progress
Activity
Newest
Oldest
Dan Bitzer
in progress
Joseph Cole
Could be extremely easy to implement... some modification of this code that I already use elsewhere...
jQuery(".clicktocopy").on("click", function () {
var copyelement = jQuery(this).find('input[type=text],textarea,select');
copyelement.focus();
document.execCommand('copy');
jQuery('.confirm_copied').show().delay(1500).fadeOut('fast');
});