|
Posted by Jonathan N. Little on 06/26/05 19:40
Hugo de Payns wrote:
> Good day,
>
> I wander, is it possible to add somekind of timelimit to
> the title in a link?? I need some more time read the tekst i put in,
> or do i need an javascript??
>
> <A title="linktip" href=".htm"></a>
>
>
> TIA
After the page loads change the title property text after a certain
time? If that is your question, then yes client-side JavaScript could do
it with a setTimeOut function, but I am not sure what that value would be.
If you wanted to change with page loading with respect to some time
criteria, like pseudo-code:
localtime < 12:00pm {
<a title="Visit us this morning!" href="morning.html">Welcome</a>
}
else{
<a title="Visit us this evening!" href="evening.html">Welcome</a>
}
you can use sever-side, but again not sure the value in it...
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Navigation:
[Reply to this message]
|