Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Anythingslider: Pass current page number, to PHP Re: Anythingslider: Pass current page number, to PHP

#87150
ic3d
Member

Thanks a lot Mottie, that did the trick!

I am feeling like a pain in the ass now, but perhaps you could help me out one more time.

Everything is working, but my links navigation menu has some javascript animation in them. For example:



  • What i would like to do is to have the css class like this:

    .nolink  {
    top:-35px;
    }

    This animates the image from top to bottom and works great. However, it also works on the dropdownitems, that don’t have an image and thus move out of the box. I tried this thingy below, but that doesn’t work.

    .nolink img  {
    top:-35px;
    }

    Do you have a clue how to solve this? I am using the code from your sample:

    .
    var nav = $('#externalNav'),
    updateLink = function(page){
    nav.find('.nolink').removeClass('nolink');
    nav.find('a[href="#' + page + '"]').addClass('nolink');
    };