Hacker News new | ask | show | jobs
Combining and Compressing Disqus' and Google Analytics' JavaScript (mudge.github.com)
17 points by mudgemeister 5617 days ago
2 comments

"Both seem terse enough and are meant for inclusion in at the bottom of your web page."

That isn't true for Google Analytics. It's designed to be placed at the bottom of the head section: http://code.google.com/apis/analytics/docs/tracking/asyncTra...

You're right, enomar; I've updated the post to reflect Google's recommended placement of the asynchronous snippet (and your other comment regarding the script type attribute only defaulting in HTML5).

Perhaps instead of appending to document.body, it would be better to use document.documentElement.firstChild to use the head element instead (this is what is present on http://diveintomark.org).

"it turns out that the type attribute is optional"

It is optional for HTML5, but not for 4.01: http://www.w3.org/TR/html401/interact/scripts.html#adef-type...