Forum Moderators: open
Heck, I have a site that uses session IDs in the URLs and as a result I had to specifically write in a system to artificially reproduce the link status indicator for some sections. (All users are logged in, or they can't see anything, which makes this possible.)
Just add the current time tot he link.
instead of:
www.example.com/portfolio.html
do this:
<script type="text/javascript">
rightnow=new Date;
document.write('<a href="http://www.example.com/portfolio.html?'+rightnow+'">linktext</a>');
</script>
or, if you want it to be just for today, or this hour, add the applicable line in the script after the rightnow=new Date; statement.
For example:
thetime=new Date;
rightnow=thetime.getHours();
or
thetime=new Date;
rightnow=thetime.getDay();