座標はオブジェクトに座標が明示的に指定されていないと出力されないようである。
具体的には position:absolute; top:xx; left:xx; の指定をしている。

| ブラウザ種別 | document.all | document.getElementById | document.layers |
| IE5.5 | object | function getElementById() { [native code] } | undefined |
| NN4.75 | undefined | undefined | object LayerArray |
| NN4.78 | undefined | undefined | object LayerArray |
| NN6.2 | undefined | function getElementById() { [native code] } | undefined |
| IE4 | たぶん○ | たぶん× | たぶん× |
| ブラウザ種別 | イベントの登録方法 |
| IE5.5 | document.onmousedown = function |
| NN4.75 | window.onmousedown = function window.captureEvents(Event.MOUSEMOVE) |
| NN4.78 | window.onmousedown = function window.captureEvents(Event.MOUSEMOVE) |
| NN6.2 | window.document.onmousedown = function |
| IE4 | document.onmousedown = function |
| ブラウザ種別 | マウス座標の取得方法 |
| IE5.5 | event.x + document.body.scrollLeft *0 *2 |
| NN4.75 | evt.pageX or evt.x *1 |
| NN4.78 | evt.pageX or evt.x *1 |
| NN6.2 | evt.pageX *1 |
| IE4 | window.event.clientX + document.body.scrollLeft *0 |
| ブラウザ種別 | 取得方法 | 設定方法 |
| IE5.5 | document.all[オブジェクト名].style.left | document.getElementById(オブジェクト名).style.left *1 |
| NN4.75 | document.layers[オブジェクト名].left | document.layers[オブジェクト名].left |
| NN4.78 | document.layers[オブジェクト名].left | document.layers[オブジェクト名].left |
| NN6.2 | document.getElementById(オブジェクト名).style.left | document.getElementById(オブジェクト名).style.left |
| IE4 | document.all[オブジェクト名].style.left |