wrdrd / docs

WRD R&D Documentation – https://wrdrd.github.io/docs/
https://wrdrd.github.io/docs/
9 stars 1 forks source link

ENH: RDFJS #20

Open westurner opened 7 years ago

westurner commented 7 years ago

For context:

// $('div.section')

nodes = $('div.line-block > div.line');
for (var i=0; i<nodes.length; i++) {
    var node=nodes[i];
    if ((node.hasChildNodes() == true) && (node.children.length > 1)) {
        console.log(node.textContent);
        console.log(node);
    }
}