Это работает в IE и FireFox ... Я тестировал их сегодня:
ПУНКТ МЕНЮ a-tag: onclick="javascript:copyText()"
JAVASCRIPT:
function copyText() {
if(document.all){
// IE - copy the selected text
var selection = document.selection;
var CopiedTxt = selection.createRange();
CopiedTxt.select();
CopiedTxt.execCommand("Copy");
copiedtext=window.clipboardData.getData("Text");
// alert("IE=" + copiedtext);
} else{
// FF - copy the selected text
var start=thisElementObject.selectionStart;
var end=thisElementObject.selectionEnd;
thisSelectedText=thisElementObject.value.substring(start, end);
// alert("FF=" + thisSelectedText);
}
}