Skip to content

Instantly share code, notes, and snippets.

@ranaroussi
Created October 31, 2012 08:17
Show Gist options
  • Save ranaroussi/3985816 to your computer and use it in GitHub Desktop.
Save ranaroussi/3985816 to your computer and use it in GitHub Desktop.
extract meta keywords of a web page
function get_meta_keywords() {
var meta_keywords = '';
var metas = document.getElementsByTagName('meta');
if (metas) {
for (var x=0,y=metas.length; x<y; x++) {
if (metas[x].name.toLowerCase() == "keywords") { meta_keywords += metas[x].content; }
}
}
return meta_keywords;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment