JSFiddle - React, Tailwind, and code Playground

by jcreamer898

HTML

<script src="http://cherne.net/brian/resources/jquery.hoverIntent.minified.js"></script>
<ul>
    <li>
        <a href="#">test 1</a>
    </li>
    <li>
        <a href="#">test 2</a>
    </li>
    <li>
        <a href="#">test 3</a>
    </li>
</ul>

JavaScript

$("ul").hoverIntent(function(){ 
    console.log( "urmom" );
}, function() {
    console.log( "urmom 2" );
});