Javascript examples for CSS Style Property:left
Set element position with CSS style left and top
<html> <head> <script type="text/javascript"> function showCoords(evt){// w ww . j ava 2s .c om 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>