Please anyone can help about AJAX tooltip function..I working on project and I need to create onmouseover to shows details of events from database..please help..
You have same mouseover done on this webpage.
mak
Please anyone can help about AJAX tooltip function..I working on project and I need to create onmouseover to shows details of events from database..please help..
You have same mouseover done on this webpage.
mak
Are the pages you wish to display the tooltips dynamically generated? If so it's arguably better to just have the server dynamically add the relevant "title" (aka tooltip) attributes with its content retrieved from a database. That's in fact how the tooltips on the forum category pages operate. Using Ajax to make a request to the server whenever the user moves his mouse over a link is a waste of resources IMO, especially if you have lots of links on your pages.
thanks for an reply,,
what "title" (aka tooltip) attributes means, when u mouseover event it will pullup event detail from database table and show in tooltip....
right?
Please help
Well, the title attribute is merely a HTML attribute, something like:
It's static, though if your pages are dynamically generated, you can have the server dynamically output the contents of the title attribute, from say a database. That's how the tooltip here in the forums are created.Code:<a href="http://google.com" title="Click here to visit Google">Google</a>
Thank you sir...my page are dynamically generate event from database.
I need help to create "you can have the server dynamically output the contents of the title "attribute, from say a database. That's how the tooltip here in the forums are created."
I need help ..sorry about my little knowledge of this..Please help me ..
mak
Bookmarks