Thursday, January 28, 2010

GWT, Firebug -- lookup meta description, title

In GWT, The page title, meta description and meta keywords are changed dynamically as GWT token changes
So view source will show different values than in DOM.

By using firebug, we can view those information.

We put description before keywords, so the order would be:

For meta.description
document.getElementsByTagName('meta')[0].content;

For meta.keywords
document.getElementsByTagName('meta')[1].content;

For title
document.title

No comments:

Post a Comment