Insert Html-code In <head> Tag
Author: Reinhard K.
Visited 3597,
Followers 2,
Shared 68
inserting HTTP-Code:
For Google tracking, i have to insert into each website in the head-Area a script. How can i do this.
my example,inserting before the closing </head> tag :
<script type="text/javascript">
var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-123456787-1']); _gaq.push(['_trackPageview']);
(function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s[removed].insertBefore(ga, s); })();
</script>
Posted on the
You can set it into the first step, General Settings in the tab Expert.
You will find a field named "Enter code to customize your website HEAD".
Becareful with the analytics because there are two versions now with different codes!
They are classic and asynchronous methods..... The classic goes into the body before the last body tag. And the asynchronous method goes into the head. This last method is prefered as it loads faster and does not conflict with other scripts!!
Frank
The code specified is the asynchronous version, you can paste it into the HEAD section.