Menu

JAVASCRIPT TUTORIALS - Javascript - HTML DOM

Javascript - HTML DOM

ADVERTISEMENTS


if (document.getElementById) {

  // If the W3C method exists, use it

}

else if (document.all) {

  // If the all[] array exists, use it

}

else {

  // Otherwise use the legacy DOM

}

ADVERTISEMENTS
ADVERTISEMENTS