I have the following html code:
<a href="/produkt" class="menuTabs">My Catalog 1 <span>(23752)</span></a>
JQuery:
$('a.menuTabs', '#subNav').mouseover(function (e) {
...
The issue here is that I only want to execute mouseover function when I’m over the words “My Catalog 1” and NOT the “span” selection.
thanks
Why not just wrapping the text you want to trigger mouseover in an own span?