Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7497469
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T19:06:54+00:00 2026-05-29T19:06:54+00:00

I have done next and prev button functionality. I need to make it so

  • 0

I have done next and prev button functionality. I need to make it so that what happens when I click on the next button, then the same thing happen reversely when clicking on the previous button.

Here I have worked fiddle Link: http://jsfiddle.net/thilakar/t8v5P/

$(function() {
    //var a = '.mainList';
    var a = 0;
    var b = 2;
    $('#next').click(function() {
        var x = 0;
        var z = $('.mainList').length;
        $('.mainList').each(function() {
            if(a == x){
                var inner_li = $('#'+a+' ul li').length;
                for( c=1; c<=inner_li; c++ ){
                    if (c == b) {
                        if ($('#'+a+'_'+c)) {
                            $('#'+a+'_'+c).show();
                        }
                    } else {
                            $('#'+a+'_'+c).hide();
                    }
                    if(b > inner_li) {
                        if (x < z-1) {
                            $('#'+a).hide();
                            a++;
                            $('#'+a).show();
                            b=1;
                        }
                    }
                }
            }
            x++;
        });
        b++;
    }); 

});

Please help me out.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T19:06:55+00:00Added an answer on May 29, 2026 at 7:06 pm

    here is the solution in pure jQuery way.

    $('#next').click(function() {
            var activeLiId = $('li.mainList:visible').attr('id');
    
            if ($('li#'+activeLiId+' > ul > li:visible').next().length == 1) {
                $('li#'+activeLiId+' > ul > li:visible').hide().next().show();
            } else if ($('li.mainList:visible').next().length == 1) {
                $('li.mainList:visible').hide().next().show().find('ul > li:first').show();
            }
    
            if ($('li.mainList:visible').next().length == 0
                && $('li.mainList:visible').find('ul > li:visible').next().length == 0
            ) {
                 $(this).attr('disabled', true);   
            } else {
                $('#prev').attr('disabled', false);
            }
        });
    
        $('#prev').click(function() {
            var activeLiId = $('li.mainList:visible').attr('id');
    
            if ($('li#'+activeLiId+' > ul > li:visible').prev().length == 1) {
                $('li#'+activeLiId+' > ul > li:visible').hide().prev().show();
            } else if ($('li.mainList:visible').prev().length == 1) {
                $('li.mainList:visible').hide().prev().show().find('ul > li:last').show();
            }
    
            if ($('li.mainList:visible').prev().length == 0
                && $('li.mainList:visible').find('ul > li:visible').prev().length == 0
            ) {
                 $(this).attr('disabled', true);   
            } else {
                $('#next').attr('disabled', false);
            }
        }).attr('disabled', true);
    

    Demo : http://jsfiddle.net/t8v5P/6/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have done something, but I don't know what I need to do next.
I have done a bit of research into this and it seems that the
I have subclassed the UIToolbar to make it easier to implement a safari next,
In my application I the next task that has not already been done by
Recently I've studied the backpropagation network and have done some manual exercise. After that,
My Application has like below functionality: I have Done to set the Values with
I am trying to get the next and prev button on my custom pager.
First off I would like to say that I have done ample research on
I have done Java and JSP programming in the past, but I am new
I have done a bit of testing on this myself (During the server side

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.