iframe 内にテキストエリアがあります。JavaScriptのonclickイベントでテキストエリアのテキストを選択したいです。
例:
I have an iframe.
The inner content of the iframe is this:
<textarea id="textarea" disabled onclick="selectthis()">
"content of textarea"
</textarea>
ユーザーがコピーできるようにテキストを選択したい:
I put this at the head of my page:
function selectthis() {
document.getElementById('textarea').select();
}
しかし、テキストエリアをクリックすると、選択されません。