View Single Post
Old 09-24-2004, 05:05 AM   #1
blueyed
Green Mole
 
Join Date: Sep 2004
Posts: 19
JS window.open link followed, though it's in a function

Hi.

We have a JS function like this, which gets written into the header of some pages:

function popupURL(url_to_open, w, h) {
var options = "toolbar=no,";
[...
window.open(url_to_open, "popup", options);
}


This results in PhpDig trying to get this uris:
/path/url_to_open,%20
/path/url_to_open,%20/

I think the search for links in JS should check if it's inside a function..
blueyed is offline   Reply With Quote