-5

I know JavaScript will help. But there is no way to write such hover tags?

Dharman
  • 30,962
  • 25
  • 85
  • 135

1 Answers1

0

Not sure what you exactly mean but it shouldn't be too different from this. Here I use the onmouseover attribute to achieve your description.

<a href="#" onmouseover="alert('Hello world')">This is a link</a>

You can then replace the alert() with a custom function in js to do what you want.