Mega Code Archive

 
Categories / JavaScript Reference / Javascript Properties
 

OffsetLeft Example

<html> <body> <div id="myDiv"       style="position:absolute;              left:150;              top:100;              width:400;              height:200;              background-color:blue;"> </div> <button onclick="alert(myDiv.offsetLeft);">offsetLeft</button> </body> </html>