Krustov wrote:
> www.freeviewepg.co.uk/js.jpg
>
> I found a piece of javascript that does what i want in terms of being
> able to use html tags .
>
> While the piece of javascript works great - it fills the popup with
> content so its instantly available on the mouse over .
>
> But , The webpage is a tv epg and has about 300 entrys , This means the
> page fills 300 popups with content and this really slows down the length
> of time it takes to display the webpage .
>
> What i'm looking for , Is a peice of javascript that allows me to use
> html tags to achieve the same sort of display , But only fills the popup
> with content on the actual mouse over .
>
> I know this means it will need to download the content before the popup
> gets displayed & thats what i want .
>
>
> While reasonable with php - i know jack shit about javascript and need
> somebody to write the piece of javascript for me - or give the url to a
> piece of javascript that is already written and does exactly what i want
> as mentioned above .
Hi,
If you need to fetch your information at runtime (=when the html is loaded
and displayed), you could have a look at AJAX.
It allows you to fetch information from the server and use that.
here is a nice place to start:
http://www.w3schools.com/ajax
Regards,
Erwin Moller