I want a part of my page not to be parsed by the jQuery Selector.
In the example below, is there a way to get all the ".module" elements but exclude the one under the div which has the class "exclude" ?
Moreover, can we do with Jquery something like "please do not parse this area". For example, I have a page which has a div(#huge) with a HUGE html content, is there a way for Jquery to ignore this div(#huge) ?
For example, I have this structure:
<div id="page">
<div class="exclude">
<div class="module"></div>
<!-- HERE HUGE HTML -->
</div>
<div>
<div class="module"></div>
<div class="module"></div>
</div>
</div>