Feedback on: irt.org FAQ Knowledge Base Q356
Comments:
On Internet Explorer try :
<BODY onmouseup="javascript:showsel();">
<b> Some sample text that can be selected </b>
<P> </P>
</BODY>
<script language="Javascript">
function showsel()
{
x = window.document.selection.createRange();
alert(x.text);
}
</script>
Worth:
Not worth reading
Comments:
Doesn't give me the result what I want.