JQuery Mobile Google Analytics kodu ekleme

JQuery Mobile website geliştirip içerisine Google Analytics script'i eklemek istediğinizde tek yapmanız gereken http://www.google.com/analytics/ adresine giderek uygulamanızı oluşturmanız ve Google'ın size verdiği ID'yi alarak aşağıdaki script'te ilgili yere yazmanız.

 

<scripttype="text/javascript">

 

var _gaq = _gaq || [];

 

_gaq.push(['_setAccount', 'Google-App-ID']);

 

_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>

 

Üstte bulunan bu script'i <head> </headtagleri arasına yazıp Google'ın sitenizle ilgili verileri tutmasını sağlayabilirsiniz.

 

Add comment