You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
replace final next button link with an anchor tag so the user goes to a different section
However after replacing the href attribute, the navigation never happens.
Wondering why something like the below wouldn't work?
// Update state of next/prev navigation:if((!!opt.prevSlide||!!opt.nextSlide)){var$target=$('[href*="#'+this.id+'"]');$target.removeClass(opt.namespace+'-disabled');if(ind==0){$target.filter(opt.prevSlide).addClass(opt.namespace+'-disabled');}elseif(ind==$slides.length-1){// Here we are on the last index, so we want to set the navigation to the next section$target.filter(opt.nextSlide).addClass('scrollme');$target.filter(opt.nextSlide).attr("href","#early-access");$target.filter(opt.nextSlide).attr("title","Find out more");}}
The text was updated successfully, but these errors were encountered:
I was hoping to be able to do something like:
However after replacing the href attribute, the navigation never happens.
Wondering why something like the below wouldn't work?
The text was updated successfully, but these errors were encountered: