JavaScript Reference/Javascript Methods/moveToBookmark
"moveToBookmark()" Example
<html>
<body>
<script language="JavaScript">
function function1() {
var m = document.body.createTextRange();
var n = m.getBookmark();
m.findText("sample", 6, 2);
m.select();
m.moveToBookmark(n);
m.findText("sample");
m.select();
}
</script>
<p>This is some sample text<p>
<input type="button" value="MoveToBookmark" onclick="function1();">
</body>
</html>
"moveToBookmark()" is applied to
+----------------+--------------------------------------------------------------+
| Applied_To |TextRange |
+----------------+--------------------------------------------------------------+
"moveToBookmark()" Syntax, Parameters and Note
Note:
Moves the object to a bookmark defined using the getBookmark() method.
Returns true (successful) or false (failed).
Syntax:
textRangeName.moveToBookmark(param1)
Parameters:
param1 Required; the name of the bookmark.