Team:Aix-Marseille/js/js AMU

From 2014.igem.org

(Difference between revisions)
Line 1: Line 1:
$(document).ready(function() {
$(document).ready(function() {
/* Append the following lines into the HEAD tag */
/* Append the following lines into the HEAD tag */
-
$('head').append("<script type='text/javascript'>/* Trying to insert into HEAD */</script>");
+
$('head').append("<!-- ANALYTICS -->
 +
<!-- ************ -->
 +
<script type='text/javascript'>
 +
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
 +
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
 +
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
 +
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
 +
 
 +
  ga('create', 'UA-50432800-2', 'auto');
 +
  ga('send', 'pageview');
 +
</script>");
/* End of the lines to append */
/* End of the lines to append */
});
});

Revision as of 16:40, 20 July 2014

$(document).ready(function() { /* Append the following lines into the HEAD tag */ $('head').append(" <script type='text/javascript'>

 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
 })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
 ga('create', 'UA-50432800-2', 'auto');
 ga('send', 'pageview');

</script>"); /* End of the lines to append */ });