$(document).ready(function(){

$('#txtURL').click(function(){
   this.focus();
   this.select();

});

$('#copy').click(function(){
   $('#txtURL').copy();

});

});

