function extractHostname(url) { var tmp = document.createElement('a'); tmp.href = url; var hostname = tmp.hostname; return hostname; } function isGeocachingDomain(url) { if (url == "www.geocaching.com" || url == "geocaching.com" || url == "www.groundspeak.com" || url == "support.groundspeak.com" || url == "wiki.groundspeak.com" || url == "groundspeak.com" || url == "www.waymarking.com" || url == "waymarking.com" || url == "coord.info") { return true; } return false; }
Hákovat to asi nebudu.