Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
What is the advantage of using unescape on document.write to load javascript?

<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>

If the ga.js file changes, will this cause any potential issues with browser cache? or will it always serve up the file fresh?

share|improve this question

marked as duplicate by yahelc, George Stocker, Robert Harvey Mar 31 '11 at 4:46

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 1 down vote accepted

It means the code will work in XML / XHTML and HTML without having to mess with CDATA

See: What is the advantage of using unescape on document.write to load javascript?

Voted to close as duplicate.

share|improve this answer

It depends on server settings as to whether or not it will serve a fresh file.

As for why it writes the script tag dynamically, it's so that on secured pages (https pages) the script comes from a secure source.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.