Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How does one create Tool-Tips for not completely displayed menu names?

Status
Not open for further replies.

Dan777

Programmer
Jul 22, 2000
34
US
I need to be able to create Tool Tips for navigation menu options, for when the menu option itself is too long to display entirely. So that if the menu option is not displayed completely, and a 'mouse-over' event occurs, the Tool Tip will be displayed showing the entire menu option.

This functionality is exactly like in the MSDN Content section, where if something is too long and not displayed completely because the navigation frame is too narrow, doing a mouse-over will display a Tool-Tip with the entire wording.

Any ideas anyone? Any assistance is greatly appreciated!!!
Thanks, Dan [sig][/sig]
 
Dan,

Quite simple in IE...

Code:
<html>
<body>
<h3 title=&quot;This is a heading&quot;>Heading</h3>
</body>
</html>

The title tag works with just about every HTML tag.

And if you need to support NN or want something more powerful go to
Later,
[sig]<p>Rob<br><a href=mailto:robschultz@yahoo.com>robschultz@yahoo.com</a><br>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br>
"Focus on the solution to the problem,<br>
not the obstacles in the way."<br>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~[/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top