I'm trying to download a site which includes the following script code:
----------
<script language=javascript>
if((navigator.userAgent.match(/iPhone/i)) ||
(navigator.userAgent.match(/iPod/i)))
{
location.replace("/mobile/index.html");
}
----------
No matter which user agent I chose in the program settings my copy always
includes nothing but the mobile version of the site.
The contents are mostly the same but the images are much smaller in the mobile
version.
Is there any chance to turn that replace off so that I'm able to download the
original site instead of the mobile one? |