'getBookmark()' Example : getBookmark « Node Operation « JavaScript DHTML






'getBookmark()' Example

    
<html>
<body>
<script language="JavaScript">
function function1() {
    var m = document.body.createTextRange();
    var n = m.getBookmark();
    m.moveToBookmark(n);
    m.findText("samp");
    m.select(); 
} 
</script>
<p>This is some sample text.</p>
<input type="button" value="Select samp" onclick="function1();">
</body>
</html>

    
      
      








Related examples in the same category