Forums

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

Home Forums JavaScript Anything slider link to specific slide not working.

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #40377
    gbucha
    Member

    I am trying to set it up so that when you click on the little device icons you can go to the appropriate slide but I can’t get it working.

    I have used the code sample provided but to no avail!

    Here is a demo link:
    http://gelfuzion.com/mcafee/index-allv2.html

    #112284
    Mottie
    Member

    Hi gbucha!

    Since AnythingSlider is being initialized on “#slider”, updating the current slide should be done the same way.

    Also, I see that every slide has the same links with the same ID. ID’s should be unique. So, I would recommend just changing, or removing the ID’s and use this code:

    $(‘nav a’).click(function(){
    var n = $(this).attr(‘href’).substring(1);
    $(‘#slider’).anythingSlider(n);
    });

    #112285
    gbucha
    Member

    Killer thanks!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘JavaScript’ is closed to new topics and replies.