I have the following problem: I have a js that adds a particular style to a div or whole html. I would like to know how to ignore some divs so that this style would not be added to them. Here is the code I'm using:
$('#efeito').click(function (e) {
$('html').toggleClass('efeito-pagina');
e.preventDefault();
});
This way, I do not want to ignore just two divs whose id is #banners-rodape
and #caixa-informativo