anchors
restituisce un Array contenente tutte le ancore presenti nel documento.
Sintassi
nodeList = document.anchors
Esempio
if ( document.anchors.length >= 5 ) {
dump("Ho trovato troppe ancore");
window.location = "http://www.google.com";
}
Note
Per ragioni di compatibilità all'indietro, l'array restituito contiene solo le ancore che hanno un attributo name
e non quelle che hanno solo l'attributo id
.