I'd like to check if a div with a particular href has a certain class too. I've coded this nav:
<nav>
    <div class="nav-wrapper">
        <ul class="normal-nav hide-on-med-and-down">
            <li><a class="" href="#chi">Chi Siamo</a></li>
            <li><a class="" href="#dirigenza">Dirigenza</a></li>
            <li><a class="" href="#squadre">Squadre</a></li>
            <li><a class="" href="#orariPrezzi">Orari e Prezzi</a></li>
            <li><a class="" href="#modulistica">Modulistica</a></li>
            <li><a class="" href="#contatti">Contattaci</a></li>
            <li><a class="" href="#fotogallery">Fotogallery</a></li>
        </ul>
    </div>
</nav>
A class active is added to the <a> element, relative to location on which the user has scrolled down, so that <a> looks like this:
<a class="active" href="#dirigenza">Dirigenza</a>
I'd like to check continuously which element in normal-nav <ul> has class active (I've scrollFire() JQuery plugin):
$('body').scrollfire({
    // Offsets
    offset: 0,
    topOffset: 0,
    bottomOffset: 0,
    onScrollAlways: function(elm, distance_scrolled) {
    },
});
and do some stuff if <a> active element is that one with href="#chi", href="#dirigenza" and so on.
How can I do this?
 
     
     
     
    