Hi all.
Total hack here creating a HTML-based help system for an HTML-based tool that has hundreds of screens with similar fields (e.g. "Company Name").
Since there are so many fields that are repeated throughout the tool, I wanted to create a single glossary file with a name anchor for each entry.
I thought it would be great if I could show a tool tip that is the short glossary entry when the user hovers the mouse over the link. So to keep it simple, I thought if I could populate the title of the link automatically with the glossary entry, it would save the user from having to ever view this massive glossary.
For example, if my target file contained
And glossary.html contained
Then the tool tip would automatically be populated with
[tab][tt]The name of the company[/tt]
when the mouse hovers over the link.
Is this possible?
Thanks in advanced.
BFP
Total hack here creating a HTML-based help system for an HTML-based tool that has hundreds of screens with similar fields (e.g. "Company Name").
Since there are so many fields that are repeated throughout the tool, I wanted to create a single glossary file with a name anchor for each entry.
I thought it would be great if I could show a tool tip that is the short glossary entry when the user hovers the mouse over the link. So to keep it simple, I thought if I could populate the title of the link automatically with the glossary entry, it would save the user from having to ever view this massive glossary.
For example, if my target file contained
Code:
<a href="glossary.html#CompanyName">Company Name</a>
Code:
<p><a name="CompanyName" id="CompanyName"></a>The name of the company. </p>
[tab][tt]The name of the company[/tt]
when the mouse hovers over the link.
Is this possible?
Thanks in advanced.
BFP