==[[JavaScript テキストエリアの内容をクリップボードにコピー]]==
*[http://msdn.microsoft.com/ja-jp/library/cc428119.aspx execCommand]
*[http://msdn.microsoft.com/ja-jp/library/cc427934.aspx TextRange]
=====[[IE]]=====
var txt_area = document.getElementById(text_area_id);
txt_area.focus();
txt_area.select();
var txtRange txt[[R]]ange = txt_area.createTextRangecreateText[[R]]ange(); txtRangetxt[[R]]ange.execCommand("copy");