Mega Code Archive

 
Categories / JavaScript Reference / Javascript Methods
 

MoveToPoint() Example

<html> <body> <script language="JavaScript"> function function1(){    var range = document.body.createTextRange();    var myX = window.event.clientX;    var myY = window.event.clientY;    range.moveToPoint(myX, myY);    range.expand("sentence");    range.select();} </script> <body onclick="function1();">Sample text range, click here</body> </body> </html>