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);
});
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
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:
Killer thanks!