Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<div onclick="getClickedWord();">
Some text here blah blah foo bar
</div>
<script language="javascript">
function getClickedWord()
{ oEvent = window.event;
oTR = document.body.createTextRange();
oTR.moveToPoint( oEvent.x, oEvent.y );
if ( oTR.expand("word")) alert( "Closest word: " + oTR.text );
}
</script>