Försöker få tag på en bils x och y relativt till dokumentet. Eftersom du provat det mesta har du säkert redan försökt med detta men jag skriver det ändå :-)En bildsposition
Proat det mesta, men den vill inte :( Några ideer?Sv: En bildsposition
<code>
function test()
{
x = bild.clientLeft;
y = bild.clientTop;
alert("x: " + x + " y: " + y);
}
</code>
Bifogar dessutom saxning från hjälpen.
clientLeft: Retrieves the distance between the offsetLeft property and the true left side of the client area.
clientTop: Retrieves the distance between the offsetTop property and the true top of the client area.
//Mikael.NET