Frontpage 2003

  • Thread starter Thread starter Phil Clear
  • Start date Start date
P

Phil Clear

On my website www.reccomended.co.uk I would like the ability to have a
balloon message appear when the mouse pointer hovers over my main headings.
This balloon would have text only to describe what is within that particular
main heading.
IS THIS POSSIBLE ?
Can any one help?
Phil.
 
Any element on a page can have a 'tool-tip' appear (such as images) by use
of the title attribute. IE will display the 'alt' attribute data for an
image if no title is available.

example
<h1 title="This text will appear on-hover over the heading">Heading</h1>


There are more advanced versions using javaascript, with the added
functionality of being able to format the text and/or container
 
Back
Top