We and our partners process your personal data (such as browsing data, IP Addresses, cookie information, and other unique identifiers) based on your consent and/or our legitimate interest to optimize our website, marketing activities, and your user experience.
What a joke. It’s been 2-1/2 YEARS for a super simple feature to be added.
FFS….somebody even gave you a head start on the code…..
WOW! Just wow…..
Marked this feature request as
Planned
We’ve had to change priorities and work on this feature has stalled – we’ll be revisiting in the future but currently don’t have an ETA
Marked this feature request as
In Progress
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();
copyelement.select();
document.execCommand(‘copy’);
jQuery(‘.confirm_copied’).show().delay(1500).fadeOut(‘fast’);
});