Skip to content

Instantly share code, notes, and snippets.

@Bizunow
Created August 23, 2017 08:05
Show Gist options
  • Save Bizunow/c945551e2cec9649edbe5bf2ac968cdc to your computer and use it in GitHub Desktop.
Save Bizunow/c945551e2cec9649edbe5bf2ac968cdc to your computer and use it in GitHub Desktop.
[Check URL domain] #js
// checkDomain('https://www.instagram.com/bizunow/', 'www.instagram.com') // === true
// checkDomain('https://www.google.ru/', 'www.instagram.com') // === false
// checkDomain('Test test test', 'www.instagram.com') // === false
function checkDomain(url, domain) {
var a = document.createElement('a');
a.href = url;
return a.hostname == domain;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment