I am currently working on a website that showcases links utilized by my team. One specific requirement is that when a user hovers over a link, note information should be displayed. Although the simplest solution would be to not list the link if it's not in use, the team insists on keeping it on the site for archival purposes. They may need to revisit the link and use it again in their work environment(s).
Here is an example link:
<a href="www.footester.com/foofootestest">Test Environment #1</a>
When hovering over the link, I would like the following alert to be displayed:
<div class="container">
<div class="alert alert-info">
<strong>Note: The testers are not currently using this link in their test environment!</strong>
</div>
</div>
If anyone has alternative suggestions on how to achieve this, I am open to hearing them.