View Single Post
02-17-2006, 06:26 PM
#5
Salathe is offline Salathe
Salathe's Avatar
Status: Community Archaeologist
Join date: Jul 2004
Location: Scotland
Expertise: Software Development
Software: vim, PHP
 
Posts: 3,820
iTrader: 25 / 100%
 

Salathe will become famous soon enough

Send a message via MSN to Salathe

  Old

Just an example, not tested at all (I just wrote it straight into here) but should give some clues.

Code:
function showAndGo(show, go) {
    var elem = document.getElementById("list" + show);
    // If listn actually exist, play with it.
    if (elem) {
        elem.className = "visible";
    }
    // Now, go to that anchor!
    window.location.hash = go;    
}

// Example use:
// This would so list with is "list1" and go to anchor "#1"
showAndGo('1', '1');