| I have the following piece of java script code in a html
document:
function popUpWindow(picture,titel,legende,x,y) {
... a lot of instructions. Here comes the difficult part
w.document.write('</BODY></HTML>');
w.focus();
}
After fetching the site with httrack the following occurs:
function popUpWindow(picture,titel,legende,x,y) {
... al lot of instructions
w.document.write('</BODY><meta http-equiv="content-type"
content="text/html;charset=iso-8859-1">
</HTML>');
w.focus();
}
Of course this throws a javascript exception in the mirrored
site.
As suggested in this forum I was trying to use the --footer
'(none)' option without success. What can I do for
suppressing this meta-tag ?
Thanks for your help
Best regards
Herbie
PS: I'm using Version: 3.30-RC-13 | |