I have a div with the footer class when I go to stylize it in css and leave it in display: none; It disappears so good. but I wanted it when used css to hide this div it did not suffer any effect. Ex:
.footer {
display:none !important;
}
even with the ! important tag I want this class to be unchanged. I already tried with a javascript tag.
document.getElementById('.footer').style.display="block";
And with JQuery
$('.footer').css('display','block');
In short, I want to force this class to not be affected by javascript.