Change the Cursor to a crosshair

This Page is locked
Modified: 2008/04/01 05:53 by ViaVE Visitor
For VE Version 6
This trick is how to change the cursor to crosshair.


document.getElementById("xxx").childNodes[0].style.cursor = "crosshair";
Where xxx is your map id. To change back use.

document.getElementById("xxx").childNodes[0].style.cursor = "";