function handleCopy(){
const range = document.createRange();
range.selectNode(document.getElementById('echo_url'));
const selection = window.getSelection();
if (selection.rangeCount > 0) selection.removeAllRanges();
selection.addRange(range);
document.execCommand('copy');
selection.removeRange(range);
}