|
Posted by Jonathan N. Little on 06/26/05 22:02
Hugo de Payns wrote:
> On Sun, 26 Jun 2005 16:40:05 GMT, "Jonathan N. Little"
> <lws4art@centralva.net> wrote:
>
>
>>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...
>
>
> Thanks for the info, jonathan, but is not exactly what i need;
> client-side javascript, server-side, i meen what are you talking about
> (:)) ; mind you, i have nothing to do with a personal website on the
> Internet, but i html-files instead of an word document or rtf-files
> e.o. it gives much more pleasure;
> the only thing i like to know if it is, and how to prolong the
> (standard) time to show the link-description; usually it is no longer
> then a couple of second, but because i put some large text in the
> linktip, like
>
> <a title="
> yadayadayadayadayadayadayadayadayadayadayadayada
> yadayadayadayadayadayadayadayadayadayadayadayada
> yadayadayadayadayadayadayadayadayadayadayadayada
> yadayadayadayadayadayadayadayadayadayadayadayada
> yadayadayadayadayadayadayadayadayadayadayadayada"
> href="file.htm"></a>
>
> i need somewhat more then a few second.
>
>
> regards
As Joel says the timing of how long the title text is displayed, must be
browser dependent. With my Mozilla there is a delay *before* the tip
displays, but remains displayed as long as the cursor is over the link.
JavaScript and a pop-up will be your best bet. If you do not understand
JavaScript then I suggest you start researching it, books &
tutorials...because there is no HTML answer for you.
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
[Back to original message]
|