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 454267
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T22:15:14+00:00 2026-05-12T22:15:14+00:00

I think my problem may be quite simple, but after trying different approaches I

  • 0

I think my problem may be quite simple, but after trying different approaches I just don’t get it.

The UI that I want to implement basically looks like this:

-Prev | Image 1 (Active) | Image 2 | Image 3 | Image n| Next-

I want to allow user to change active image by pressing Next or Prev buttons.

HTML for my UI looks like this:

<ul class="slideshow">
    <li><a href="#" id="prev">Prev</a></li>
    <li><a href="#" class="pic-act"><img src="1.png"  class="thumb" /></a></li>
    <li><a href="#" class="pic"><img src="2.png"  class="thumb" /></a></li>
    <li><a href="#" class="pic"><img src="3.png"  class="thumb" /></a></li>
    <li><a href="#" id="prev">Next</a></li>     
</ul>

I want to create jQuery script that would find first li element with pic-act class and thh next element that has pic class attached. After that I want to remove pic-act class from first element and add pic class to it and then I want to add pic-act class to second element.

I try to accomplish this with follow jQuery code

$(document).ready(function() {
$("#next").click(function(){
    var next = $(".pic-act ~ .pic");
    $(next).attr("class", "pic-act");
    $(".pic_act:first").attr("class", pic);     
}); 
});   

Unfortunately this code is unable to find next non pic-act element 🙁

My second requirement is when user reaches last li element and presses “Next” button one more time, the very first li element is becomes active. (Same with “Prev” button)

I hope this makes sense.

Thank You very much in advance!

  • 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-12T22:15:15+00:00Added an answer on May 12, 2026 at 10:15 pm

    Maybe this:

    $(function(){
            $('#next').click(function(){
                    var $elem = $('.slideshow .pic-act').removeClass('pic-act').addClass('pic').next('.pic');
                    if ($elem.length < 1){
                            $('.slideshow .pic').eq(0).addClass('pic-act').removeClass('pic');
                    }else{
                            $elem.removeClass('pic').addClass('pic-act');
                    }
            });     
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My problem is one that you would think is quite common, but I haven't
I'm trying to do something that I thought would be quite simple but as
I am new at JavaScript so I think my problem may be simple. This
Simple problem (I think): I want to be able to invoke a click method
This may be quite simple but I'm rather new to Lambda's so bear with
I think I have a synchronization problem...It may be too basic..Please help.. I have
I think that this problem can be sorted using reflection (a technology which I'm
The title of this question may be a bit misleading. I couldn't quite think
I think I may have asked this on Haskell-Cafe at some point, but damned
I may have a misunderstanding but I was under the impression that having a

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.