Hello!
I am a licensed JW 5.8 user (along with a GA Pro license). I have the following script in GA.html
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-xxxxxxx-x']);
_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.parentNode.insertBefore(ga, s);
})();
</script>
My JW embeder code is as given below:
jwplayer("flashbanner").setup({
flashplayer: viralSWFPath,
file: "/UserVideos/test.flv",
streamer:'rtmp://two.octocast.net/vod/',
height: height,
width: width,
skin: skinPath,
allowfullscreen:"true",
allowscriptaccess:"always",
enablejs:"true",
controlbar: "over",
volume: playervolume,
stretching:"uniform",
image:imagePath,
"plugins": {
"gapro-2": {}
}
});Unfortunately I am not able to find the GA call with these codes neither in firebug nor in my GA account after more than 48 hours.
Please help to have this corrected!!
Thanks in advance!
Nothing obviously wrong here⦠Is the Google Analytics script loaded before the jwplayer() call?