- $('.Normal').bind('mouseenter mouseleave', function() {
- $(this).toggleClass('Hover');
- });
The above function works fine but is causing a problem if the cursor sits over '.Normal' when the page loads; mouseover & mouseout's functionality seems to switch.
Am I doing something wrong here? (This is more noticeable in older versions of ie).
Thanks in advance