| I am trying to mirror a list of results (the results are links to pages) that
is paginated. The first page mirrors fine, but the links to the ensuing pages
reference the original website. The link is made using a javascript function
to resubmit the current page via a form) with a page number parameter. Any
thoughts on how I can get httrack to follow all of these pagination links?
The relevant javascript:
function fnDoSearch(){
frmMain.submit();
}
function fnGoNext(){
frmMain.CurPage.value ++;
fnDoSearch();
}
frmMain action is the current page | |