<head> <script language="JavaScript"> function function1(){ myDiv.style.posLeft = 500; } </script> </head> <body> <div id="myDiv" style="background-color:#EEEE; position:absolute; width:200; cursor:hand"; onclick="function1()"> Click your mouse here to set the posLeft to 500. </div> </body>