/ Published in: JavaScript
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/* CASOS APLICAVEIS: Backgrounds servidos pela Mediamind/eyeblaster, em que mexemos no DOM (ex: puxar o site para baixo) via zahir. OCORRENCIA: Se não fizermos o OS detection, vamos mexer no DOM mas o fundo/ad nunca chega a aparecer SOLUCAO: Fazer OS detection no flight. SE ((NÃO (LINUX OU UNIX)), CORRE CODIGO DA CAMPANHA) NOTA: Normalmente servido nas tags POP EXEMPLO APLICACAO: campanha ZON Relvado: 09/2011 */ var getOS = function () { var a = navigator.appVersion; if((a.indexOf("X11")!=-1) || (a.indexOf("Linux")!=-1)) { return true; } }; if (!getOS()) { //Código do ad, normalmente via write() //document.write("<script type='text/javascript'>eyeblaster_path.js</script>"); };