HTML JavaScript DHTML

 
 
document.anchors Property 
 
function goNextAnchor(where) { 
    window.location.hash = where; 

function addEvent(elem, evtType, func) { 
    if (elem.addEventListener) { 
        elem.addEventListener(evtType, func, false); 
    } else if (elem.attachEvent) { 
        elem.attachEvent("on" + evtType, func); 
    } else { 
        elem["on" + evtType] = func; 
    } 

addEvent(window, "load", function() { 
    addEvent(document.getElementById("next1"), "click", function(evt) {goNextAnchor("sec1")}); 
    addEvent(document.getElementById("next4"), "click", function(evt) {goNextAnchor("start")}); 
}); 
 
 
 
Top
 
     
 
Section 1