javascript - JQuery Content Arrow Navigation -
i've been in trouble code: http://jsfiddle.net/xarlyblack/4wsx3zkx/ i want jquery fadein/out content navigation. it works when go next div , again. when i'm in last div , click next, content disappears (why had created if statement return first). happens same when i'm in first div , click previous, want go last div. i tried .last() / .first() .find()eq() . goes. think i'm missing something. jquery code: var ilust = $('.ilust'); var wrapper = ilust.find('.pag-ilust'); var pag = wrapper.find('.pag'); var btn = ilust.find('.nav-btn'); btn.click(function(){ if ($(this).hasclass('nav-next')){ var currentpag = $('.active-pag'); var nextpag = currentpag.next(); currentpag.fadeout('fast').removeclass('active-pag'); nextpag.fadein('slow').addclass('active-pag'); if (nextpag = false){ nextpag = pag.first(); ...