social_event_invite_flow-1.0.0-beta3/assets/js/clipboard.js
assets/js/clipboard.js
function myFunction(element) {
// Get the text field
var copyText = document.getElementById(element);
// Select the text field
copyText.select();
copyText.setSelectionRange(0, 99999); // For mobile devices
// Copy the text inside the text field
navigator.clipboard.writeText(copyText.value);
// Alert the copied text
alert("Copied the text: " + copyText.value);
}