
February 26th, 2001, 02:28 PM
|
 |
Resident DJ
|
|
Join Date: Feb 2001
Posts: 283
 
Time spent in forums: 1 Day 2 h 34 m 26 sec
Reputation Power: 13
|
|
|
It would be better to have this as a complete redirect in JS and PERL. Add another part of your PERL script that takes them to the actual link.
<script language="javascript" type="text/javascript">
function person_out(variable,linkvar)
{
window.location("/cgi-bin/script.pl?foo=" + variable + "&link=" + linkVar);
}
</script>
then you links will be
<a href="javascript:person_out(timeFunction(),'page.html');">link</a>
|