I got a markup with the following structure :
<body>
<h1>Title</h1>
<p>bla</p>
<div>
... <!-- a thousand tags -->
</div>
<div id="do-not-modify-me">
<!-- a hundred tags -->
</div>
</body>
I wish to do a little search an replace in the body, but this must not change #do-not-modify-me because it has JS events attach on it and nothing to refresh them.
I played with the not() function, with filter and with the CSS 3 selecter ":not" but I can't get quite the result I want.