Is there a `pointer-events:hoverOnly` or similar in CSS?

Hover only. It is very easy. No JS… Prevent link default action too.

a:hover {
	color: red;
}
a:active {
	pointer-events: none;
}
<a href="www.google.com">Link here</a>

Edit:
supported in IE 11 and above
http://caniuse.com/#search=pointer-events

Leave a Comment