input/textarea onfocus select all and copy to clipboard
$textarea/input.focus(function(e){ $(this).select(); document.execCommand('copy'); });