This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<-- Inserir no body --> | |
<custom name="opencounter" type="tracking" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="header__bar"> | |
<div class="shell"> | |
<div class="header__bar-inner"> | |
<ul class="list-features"> | |
<li> | |
<span style="color: white; text-transform:none;"> | |
<a href="https://www.fascar.com.br/Institucional/formas-de-entrega-e-frete"> | |
<strong>FRETE GRÁTIS</strong>* Brasil: Veja as condições. | |
</a> | |
</span> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function observeElement(el) { | |
// select the target node | |
var target = document.querySelector(el); | |
// create an observer instance | |
var observer = new MutationObserver(function(mutations) { | |
console.log('mutação detectada'); | |
}); |