Vanilla 1.0.3 is a product of Lussumo. More Information: Documentation, Community Support.
function copy(id) {
if (window.clipboardData) {
window.clipboardData.setData("Text", document.getElementById(id).value);
} else {
var flashcopier = 'flashcopier';
if(!document.getElementById(flashcopier)) {
var divholder = document.createElement('div');
divholder.id = flashcopier;
document.body.appendChild(divholder);
}
document.getElementById(flashcopier).innerHTML = '';
var divinfo = SWFObject('data:application/x-shockwave-flash;base64,'+
'Q1dTB3kAAAB4nKtgYI1nYOBfwMDAw8jgzPT//3975lAGBoYOdQYWhuSczIKk/MSiFIac1Lz0kgyG'+"\r\n"+
'4MriktRchuLUEme41DQmBg4GGRDJ6Cc0l4lBAibCzsDOCDSJgwksyRwkzuAA5AIAd7oY/w==',
'copy_contents', '0', '0', '4');
divinfo.addVariable('clipboard', encodeURIComponent(document.getElementById(id).value));
divinfo.write(flashcopier);
}
}
1 to 4 of 4