Javascript
function click_file(){ var id = $(window.event.target).data("id"); var input_value = $("#"+id).find("#input-value"); var str = $(input_value).attr("id"); var input_obj= document.getElementById(str); const el = document.createElement('textarea'); el.value = $(input_value).val(); document.body.appendChild(el); el.select(); document.execCommand('copy'); document.body.removeChild(el); alert("copy") }