tomer8007/wikipedia-to-json

doc.getElementsByClassName; Could be outdated

DavidCharif opened this issue · 1 comments

At least with the new variable
var doc = new JSDOM(html);
Old one was var doc = jsdom(html);
then to get access to the elements you need to access with window.

doc.window.document.getElementsByClassName...


After working a little i find a better solution. Just var doc = new JSDOM(html).window.document;
then you can doc.getElements..

Thank you, this is now fixed