Let's say I have a link like:
<a class="link" href="www.rich.com" onmouseover="go(this)">Link</a>
Is there a way to configure the onmouseover event by calling go(this) to fire only once, still using the inline onmouseover=<some code> notation? I want it to be defined inline, not with a JavaScript call.
I currently have this, but this is not what I want:
$(".link").one('mouseover', function(e) {
source share