Created
January 15, 2018 23:16
-
-
Save joelgriffith/8f1cf0a4c4ac748ba79780348bcaa60a to your computer and use it in GitHub Desktop.
Get's a site description
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getDescription() { | |
if (document.querySelector('meta[property="og:description"]')) { | |
return document.querySelector('meta[property="og:description"]').content; | |
} | |
if (document.querySelector('[itemprop="description"]')) { | |
return document.querySelector('[itemprop="description"]').text; | |
} | |
if (document.querySelector('meta[name="description"]')) { | |
return document.querySelector('meta[name="description"]').content; | |
} | |
return document.body.innerText.substring(0, 180) + '...'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment