[jQuery] Ajax - Disable script eval

[jQuery] Ajax - Disable script eval


I am using the jQuery load function to grab HTML from other pages. I
am only interested in the HTML and the scripts in the page are
irrelevant. How can I skip the scripts eval?
I tried to add a filter but the following doesn't seem to work:
load("page.html *:not(script)")
I was also considering overwriting the GlobalEval function (I don't
want to alter the jQuery library itself), but I don't know how to do
that...
Thanks for your help!