I have my code which have a header. I want to modify the whole page except the header. I need to use html() and not append/prepend/etc.
Code looks like this:
<body>
<div class="header">
HEADER
</div>
<!-- MODIFY THIS -->
</body>
I have tried this but no luck $("body .header:after").html("TEST");
Is it possible ?
PS: Dont add any div. I just want to select and modify whole content after the header class.