Hi All,
I am writing a small webspider for a website which uses a lot of javascript for links:
<htmlTag onclick="someFunction();">Click here</htmlTag>
where the function looks like:
function someFunction() {
var _url;
...
// _url constructed, maybe with reference to a value in the HTML doc
// and/or a value passed as argument(s) to this function
...
window.location.href = _url;
}
What is the best way of evaluating this function server-side so I can construct the value for _url?