I assume that it looks like any copy in the script clipboard, but you paste the text “Read more at: ..” in front and listen to the oncopy event.
So, instead of just doing: window.clipboardData.setData ("Text", textToCopy);
would you do
window.clipboardData.setData ("Text", "More on: mysite.com", + textToCopy);
More details here:
http://www.daniweb.com/forums/thread53662.html
quoo
source share