I've one problem with window.open() function.
I need to open each domain from this list and check if it's pointed to a lander.
I tried to get all domains with document.querySelectorAll... well, it doesn't matter.
When I calling function window.open(domain, '_blank') - it's always point to this url: brandnames.net/domain
But I need only url to be as: google.com , not brandnames.net/google.com ( for example ).
As I understand window.open() - gives absolute path before (domain argument) - how I can to avoid this?