0
I have the following problem: I have a js that adds a certain style in a div or whole html. I would like to know how to ignore some Ivs so that this style is not added to them. Follow the code I am using:
$('#efeito').click(function (e) {
$('html').toggleClass('efeito-pagina');
e.preventDefault();
});
That way, I don’t want to ignore just two Ivs whose id are #banners-rodape
and #caixa-informativo