Lines Matching refs:NEXT
159 // Need a copy of the pagePath before it gets changed in the next block;
268 // set up prev/next links if they exist
301 // set up next links
310 // if there aren't any children, go to the next section (required for About pages)
312 $nextLink = $selListItem.next('li').find('a');
325 // jump to the next topic in this section (if it exists)
326 $nextLink = $selListItem.next('li').find('a:eq(0)');
329 // no more topics in this section, jump to the first topic in the next section
330 $nextLink = $selListItem.parents('li:eq(0)').next('li').find('a:eq(0)');
331 if (!$nextLink.length) { // Go up another layer to look for next page (lesson > class > course)
332 $nextLink = $selListItem.parents('li:eq(1)').next('li.nav-section').find('a:eq(0)');
334 // if that doesn't work, we're at the end of the list, so disable NEXT link
335 $('.next-page-link').attr('href','').addClass("disabled")
338 $('.content-footer .next-page-link').hide();
353 $('.content-footer.next-class').show();
354 $('.next-page-link').attr('href','')
358 $('.content-footer .next-page-link').hide();
360 $('.next-class-link').attr('href',$nextLink.attr('href'))
363 $('.next-class-link').find('.new').empty();
366 $('.next-page-link').attr('href', $nextLink.attr('href'))
368 // for the footer link, also add the next page title
369 $('.content-footer .next-page-link').append(": " + $nextLink.html());
1468 * <a href="" class="slideshow-next">Next</a>
1481 * btnNext: '.slideshow-next'
1487 * btnNext: optional identifier for next button
1571 //Next button
1671 * <a href="" class="slideshow-next">Next</a>
1684 * btnNext: '.slideshow-next'
1690 * btnNext: optional identifier for next button
2023 // if the next item is a header, skip it
2040 // if the next item is a header, skip it
2995 // This next line shouldn't be necessary. I'll buy a beer for the first
3621 .append($('<a>').addClass('slideshow-next').text('Next'));
3645 btnNext: '.slideshow-next'
4211 was removed, but it is possible to add .next-arrow and .prev-arrow elements to
4230 var $nextArrow = $widget.find('.next-arrow');