File: get_ancestor.js

package info (click to toggle)
pageedit 2.4.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,956 kB
  • sloc: ansic: 31,806; cpp: 15,036; python: 1,141; javascript: 87; sh: 13; makefile: 7
file content (14 lines) | stat: -rw-r--r-- 486 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// From the current node, walk up the parent hierarchy until find a matching
// element matching one of the specified node names.
function get_ancestor(startNode, targetNodeNames) {
    var found = false;
    while( found == false && node != null ) {
        for( var i = 0; i < 1; i++ ) {
            if ( node.nodeName.toLowerCase() == targetNodeNames[i].toLowerCase() ) {
                return node;
            }
        }
        node = node.parentNode;
    }
    return node;
};