1$('.copy_button').on( 'click', function(e){
2 e.preventDefault();
3 copyToClipboard( $(this).attr('href') );
4 });
5
6 function copyToClipboard(element) {
7 var $temp = $("<input>");
8 $("body").append($temp);
9 $temp.val(element).select();
10 document.execCommand("copy");
11 $temp.remove();
12 }
13