En nu wil ik wel es van het eeuwige gezeur af zijn. Hoe krijg ik deze code voor zo veel mogelijk browsers werkend?
Thanx, me.
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| function getLeft(obj) {
if (IE) return obj.style.pixelLeft;
}
function getTop(obj) {
if (IE) return obj.style.pixelTop;
}
function setLeft(obj, left) {
if (IE) obj.style.pixelLeft = left +'px';
}
function setTop(obj, top) {
if (IE) obj.style.pixelTop = top +'px';
} |
Thanx, me.