internet explorer - Omniture code issue in IE -
we trying implement omniture tracking our site involves lot of ajax calls. send omniture code response of ajax request. works chrome , other browsers. having problem ie. line,
if (navigator.appversion.indexof('msie') >= 0) document.write(unescape('%3c') + '!-' + '-')
is causing access denied
error in ie. understand of document.write
append current document if , when document
loading. since ours ajax request, document
in ready state, , cause document.write
overwrite our whole page <!--
.
can suggest way tackle issue?
for versions of ie code implemented for? support ie >= 7 , safe if remove line?
this article prove valuable you:
breaking down sitecatalyst's page-level code
if don't care data coming browsers older ie7 or non-javascript users, can call s.t()
function itself.
the noscript tag there @ least data non-javascript visitors, , line of code have in question used stop ie sending both regular image request , noscript tag simultaneously. reason, ie executes noscript tag if javascript enabled.
Comments
Post a Comment