Javascript examples for DOM Event:onclick
Move an element where the user has clicked
<html> <head> <script type="text/javascript"> function showCoords(evt){/*www . j ava 2 s .com*/ document.getElementById("character").style.left = evt.pageX; document.getElementById("character").style.top = evt.pageY; } </script> </head> <body onmousedown="showCoords(event)"> <div id="character" style="position: absolute; top: 100px; width: 80px; height: 40px; background:black;"> Char </div> </body> </html>