| Some web sites are getting more clever about linking ads; they dynamically
generate and load links via JavaScript in the browser. Example: These lines
from the Dilbert site:
<script
type="text/javascript">adsonar_pid=180786;adsonar_ps=445668;adsonar_zw=220;adsonar_zh=165;adsonar_jv='ads.adsonar.com';</script><script
language="JavaScript" src=http://js.adsonar.com/js/adsonar.js</script>
These then generate calls to the ad sites at loadtime. My goal is to avoid
any external queries at loadtime. I could disable javascript on the browser,
but that's inconvenient since I'm doing other things in other tabs at the same
time. Is there any way to cause HTTrack to rewrite the page without any
javascript? | |