Is there a way to echo/post registered session data to your clipboard?
Say I have a customer's account open, and their address if comprised of six or seven variables, is there a way to stick these in your clipboard with a button click, so they can be pasted quickly?
So say I have six session variables:
$firstname $lastname
$address
$city $state $zipcode
is there a way to POST those to the clipboard so the next time I right-click Paste it shows up as:
Bob Smith
221 N. Anderson St.
Seattle, WA 98001
If so, can it include formatting somehow, like line breaks? I guess if data could be posted to the clipboard somehow you could just concat a big long string huh?