JavaScript Reference/Javascript Methods/empty
"empty()" Example
<html>
<body>
<script language="JavaScript">
function function1() {
document.selection.empty();
}
</script>
<p onMouseUp="function1();">you release the mouse.</p>
<p>Do some selection here.</p>
</body>
</html>
"empty()" is applied to
+----------------+--------------------------------------------------------------+
| Applied_To |selection |
+----------------+--------------------------------------------------------------+
"empty()" Syntax, Parameters and Note
Note:
Clears the content of the selection object.
Syntax:
document.selection.empty()