| Okay, problem fixed, but anyway this won't work,
because the websites dynamically (using javascript)
patches URLs using a 'xLateUrl' function callback:
function xLateUrl(aCollection, sProp) {
var i = 0;
for(i = 0; i < aCollection.length; i++)
if (aCollection[i][sProp].indexOf("mailto:")
== -1 &&
aCollection[i][sProp].indexOf
("javascript:") == -1)
aCollection[i][sProp] = sWayBackCGI +
aCollection[i][sProp];
}
Therefore, it is absolutely impossible to catch links
inside this page!
| |