Tuesday, 15 February 2011

javascript - Google Analytics error: Cannot read property 'onUpdated' of undefined -



javascript - Google Analytics error: Cannot read property 'onUpdated' of undefined -

i have others webpages google analytics script added, don't know what's happened website: http://calendarios2015.net/

press f12 google chrome see error:

i added google analytics script on bottom of file:

$(document).ready(function () { // contact maps $("#maps").gmap3({ map: { options: { center: [41.60579, -0.93166], zoom: 14, scrollwheel: false } }, marker: { latlng: [41.60579, -0.93166], options: { icon: new google.maps.markerimage( "img/pin.png", new google.maps.size(48, 48, "px", "px") ) } } }); //selection .active item $(function () { var pgurl = window.location.href.substr(window.location.href .lastindexof("/") + 1); $(".current-page ul li a").each(function () { if ($(this).attr("href") == pgurl || $(this).attr("href") == '') $(this).parent("li").addclass("active"); }) }); //read more $('.read-more').click(function () { var collapse_content_selector = $(this).attr('href'); var toggle_switch = $(this); $(collapse_content_selector).toggle(function () { if ($(this).css('display') == 'none') { //change button label 'show' toggle_switch.html('leer más <span class="glyphicon glyphicon-chevron-down"></span>'); } else { //change button label 'hide' toggle_switch.html('ocultar <span class="glyphicon glyphicon-chevron-up"></span>'); } }); }); //spain map $(function () { $('#map').vectormap({ map: 'es_mill_en', backgroundcolor: '#f5f5f5', zoomonscroll: false, regionstyle: { initial: { fill: '#1aa2bc' } }, onregionclick: function (event, code) { //begin switch (code) { case 'es-an': window.location = 'calendario-laboral-2015-andalucia.php'; break case 'es-ar': window.location = 'calendario-laboral-2015-aragon.php'; break case 'es-as': window.location = 'calendario-laboral-2015-asturias.php'; break case 'es-ex': window.location = 'calendario-laboral-2015-extremadura.php'; break case 'es-cm': window.location = 'calendario-laboral-2015-castilla-la-mancha.php'; break case 'es-ct': window.location = 'calendario-laboral-2015-cataluna.php'; break case 'es-cb': window.location = 'calendario-laboral-2015-cantabria.php'; break case 'es-cl': window.location = 'calendario-laboral-2015-castilla-y-leon.php'; break case 'es-ga': window.location = 'calendario-laboral-2015-galicia.php'; break case 'es-ib': window.location = 'calendario-laboral-2015-islas-baleares.php'; break case 'es-mc': window.location = 'calendario-laboral-2015-murcia.php'; break case 'es-md': window.location = 'calendario-laboral-2015-madrid.php'; break case 'es-nc': window.location = 'calendario-laboral-2015-navarra.php'; break case 'es-ri': window.location = 'calendario-laboral-2015-la-rioja.php'; break case 'es-pv': window.location = 'calendario-laboral-2015-pais-vasco.php'; break case 'es-vc': window.location = 'calendario-laboral-2015-valencia.php'; break default: window.location = 'calendario-laboral-2015.php'; } //end } }); }); (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-52316871-1', 'auto'); ga('send', 'pageview'); });

javascript google-analytics

No comments:

Post a Comment