$('.copyable').click(function (event) {
const targetInput = document.getElementById('copyable');
targetInput.select();
document.execCommand('copy');
//navigator.clipboard.writeText(targetInput.getAttribute('data-url'));
alert("Link Copied");
});