Subj : Re: Get URLs To : netscape.public.mozilla.jseng From : Brendan Eich Date : Thu Sep 25 2003 11:46 am FERNANDEZ Emmanuel wrote: > I agree. > But in that case : > > > > > > go > > > I need the execution to know the link. > > Any solution ? You can't execute the script on the server side. It needs the client's DOM, cookies, other user state including input events from interacting with the user. There's no point in pretending you can "solve" this problem on the server side. If you really need to detect all links that might be *computed* (imagine JS that computes a link not by strinct concatenation but using Math and String.fromCharCode), you need to run in the client. Or you need a proxy between client and server. /be .