How to change class=”active” in carousel (Bootstrap 4) with the use of JavaScript?












0















I have a problem with „carousel” in Bootstrap 4. My carousel code is:



<div class="row">
<div class="col-12 col-lg-10 px-0">
<!--Carousel Wrapper-->
<div id="carousel-thumb" class="carousel slide carousel-fade carousel-thumbnails" data-ride="carousel" data-interval="false">
<!--Slides-->
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<?php $image = get_field('img_a_4_zdjecia_1'); if( !empty($image) ): ?>
<a href="<?php echo $image['url']; ?>"><img class="d-block m-auto" src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>"></a>
<div class="position-absolute zoomit"><a href="<?php echo $image['url']; ?>"><span class="fas fa-search-plus"></span></a></div>
<?php endif; ?>

</div>
<div class="carousel-item">
<?php $image = get_field('img_a_4_zdjecia_2'); if( !empty($image) ): ?>
<a href="<?php echo $image['url']; ?>"><img class="d-block m-auto" src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>"></a>
<div class="position-absolute zoomit"><a href="<?php echo $image['url']; ?>"><span class="fas fa-search-plus"></span></a></div>
<?php endif; ?>
</div>
<div class="carousel-item">
<?php $image = get_field('img_a_4_zdjecia_3'); if( !empty($image) ): ?>
<a href="<?php echo $image['url']; ?>"><img class="d-block m-auto" src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>"></a>
<div class="position-absolute zoomit"><a href="<?php echo $image['url']; ?>"><span class="fas fa-search-plus"></span></a></div>
<?php endif; ?>
</div>
<div class="carousel-item">
<?php $image = get_field('img_a_4_zdjecia_4'); if( !empty($image) ): ?>
<a href="<?php echo $image['url']; ?>"><img class="d-block m-auto" src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>"></a>
<div class="position-absolute zoomit"><a href="<?php echo $image['url']; ?>"><span class="fas fa-search-plus"></span></a></div>
<?php endif; ?>
</div>
</div>
<!--/.Slides-->
<!--Controls-->
<a class="carousel-control-prev" href="#carousel-thumb" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Poprzednie</span>
</a>
<a class="carousel-control-next" href="#carousel-thumb" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Następne</span>
</a>
<!--/.Controls-->
</div>

</div>
<div class="col-12 col-lg-2 px-0">
<ol class="carousel-indicators">
<?php $image = get_field('img_a_4_zdjecia_1'); if( !empty($image) ): ?>
<li data-target="#carousel-thumb" data-slide-to="0" class="active"> <img class="d-block w-100" src="<?php echo $image['sizes']['medium']; ?>" class="img-fluid" alt="<?php echo $image['alt']; ?>"></li>
<?php endif; ?>
<?php $image = get_field('img_a_4_zdjecia_2'); if( !empty($image) ): ?>
<li data-target="#carousel-thumb" data-slide-to="1"><img class="d-block w-100" src="<?php echo $image['sizes']['medium']; ?>" class="img-fluid" alt="<?php echo $image['alt']; ?>"></li>
<?php endif; ?>
<?php $image = get_field('img_a_4_zdjecia_3'); if( !empty($image) ): ?>
<li data-target="#carousel-thumb" data-slide-to="2"><img class="d-block w-100" src="<?php echo $image['sizes']['medium']; ?>" class="img-fluid" alt="<?php echo $image['alt']; ?>"></li>
<?php endif; ?>
<?php $image = get_field('img_a_4_zdjecia_4'); if( !empty($image) ): ?>
<li data-target="#carousel-thumb" data-slide-to="2"><img class="d-block w-100" src="<?php echo $image['sizes']['medium']; ?>" class="img-fluid" alt="<?php echo $image['alt']; ?>"></li>
<?php endif; ?>
</ol>
</div>
<!--/.Carousel Wrapper-->
</div>


The big image changes after clicking in the small image (on the right side).



In detail, I mean class=”active”. It changes the colour of the border of the small image and there is everything all right. But what to do to change class=”active” in thumbnail when I switch the big image with the use of arrows (right or left)?



At present my code in JavaScript which adds and removes class=”active” is:



jQuery(function($) {
$('.carousel-indicators > li').click(function() {
$(this).siblings('li').removeClass('active');
$(this).addClass('active');
});
});









share|improve this question

























  • @YashKaranke: please do not correct the spelling of "colour". It is the British spelling, and is perfectly acceptable.

    – halfer
    Nov 19 '18 at 20:23
















0















I have a problem with „carousel” in Bootstrap 4. My carousel code is:



<div class="row">
<div class="col-12 col-lg-10 px-0">
<!--Carousel Wrapper-->
<div id="carousel-thumb" class="carousel slide carousel-fade carousel-thumbnails" data-ride="carousel" data-interval="false">
<!--Slides-->
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<?php $image = get_field('img_a_4_zdjecia_1'); if( !empty($image) ): ?>
<a href="<?php echo $image['url']; ?>"><img class="d-block m-auto" src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>"></a>
<div class="position-absolute zoomit"><a href="<?php echo $image['url']; ?>"><span class="fas fa-search-plus"></span></a></div>
<?php endif; ?>

</div>
<div class="carousel-item">
<?php $image = get_field('img_a_4_zdjecia_2'); if( !empty($image) ): ?>
<a href="<?php echo $image['url']; ?>"><img class="d-block m-auto" src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>"></a>
<div class="position-absolute zoomit"><a href="<?php echo $image['url']; ?>"><span class="fas fa-search-plus"></span></a></div>
<?php endif; ?>
</div>
<div class="carousel-item">
<?php $image = get_field('img_a_4_zdjecia_3'); if( !empty($image) ): ?>
<a href="<?php echo $image['url']; ?>"><img class="d-block m-auto" src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>"></a>
<div class="position-absolute zoomit"><a href="<?php echo $image['url']; ?>"><span class="fas fa-search-plus"></span></a></div>
<?php endif; ?>
</div>
<div class="carousel-item">
<?php $image = get_field('img_a_4_zdjecia_4'); if( !empty($image) ): ?>
<a href="<?php echo $image['url']; ?>"><img class="d-block m-auto" src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>"></a>
<div class="position-absolute zoomit"><a href="<?php echo $image['url']; ?>"><span class="fas fa-search-plus"></span></a></div>
<?php endif; ?>
</div>
</div>
<!--/.Slides-->
<!--Controls-->
<a class="carousel-control-prev" href="#carousel-thumb" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Poprzednie</span>
</a>
<a class="carousel-control-next" href="#carousel-thumb" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Następne</span>
</a>
<!--/.Controls-->
</div>

</div>
<div class="col-12 col-lg-2 px-0">
<ol class="carousel-indicators">
<?php $image = get_field('img_a_4_zdjecia_1'); if( !empty($image) ): ?>
<li data-target="#carousel-thumb" data-slide-to="0" class="active"> <img class="d-block w-100" src="<?php echo $image['sizes']['medium']; ?>" class="img-fluid" alt="<?php echo $image['alt']; ?>"></li>
<?php endif; ?>
<?php $image = get_field('img_a_4_zdjecia_2'); if( !empty($image) ): ?>
<li data-target="#carousel-thumb" data-slide-to="1"><img class="d-block w-100" src="<?php echo $image['sizes']['medium']; ?>" class="img-fluid" alt="<?php echo $image['alt']; ?>"></li>
<?php endif; ?>
<?php $image = get_field('img_a_4_zdjecia_3'); if( !empty($image) ): ?>
<li data-target="#carousel-thumb" data-slide-to="2"><img class="d-block w-100" src="<?php echo $image['sizes']['medium']; ?>" class="img-fluid" alt="<?php echo $image['alt']; ?>"></li>
<?php endif; ?>
<?php $image = get_field('img_a_4_zdjecia_4'); if( !empty($image) ): ?>
<li data-target="#carousel-thumb" data-slide-to="2"><img class="d-block w-100" src="<?php echo $image['sizes']['medium']; ?>" class="img-fluid" alt="<?php echo $image['alt']; ?>"></li>
<?php endif; ?>
</ol>
</div>
<!--/.Carousel Wrapper-->
</div>


The big image changes after clicking in the small image (on the right side).



In detail, I mean class=”active”. It changes the colour of the border of the small image and there is everything all right. But what to do to change class=”active” in thumbnail when I switch the big image with the use of arrows (right or left)?



At present my code in JavaScript which adds and removes class=”active” is:



jQuery(function($) {
$('.carousel-indicators > li').click(function() {
$(this).siblings('li').removeClass('active');
$(this).addClass('active');
});
});









share|improve this question

























  • @YashKaranke: please do not correct the spelling of "colour". It is the British spelling, and is perfectly acceptable.

    – halfer
    Nov 19 '18 at 20:23














0












0








0








I have a problem with „carousel” in Bootstrap 4. My carousel code is:



<div class="row">
<div class="col-12 col-lg-10 px-0">
<!--Carousel Wrapper-->
<div id="carousel-thumb" class="carousel slide carousel-fade carousel-thumbnails" data-ride="carousel" data-interval="false">
<!--Slides-->
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<?php $image = get_field('img_a_4_zdjecia_1'); if( !empty($image) ): ?>
<a href="<?php echo $image['url']; ?>"><img class="d-block m-auto" src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>"></a>
<div class="position-absolute zoomit"><a href="<?php echo $image['url']; ?>"><span class="fas fa-search-plus"></span></a></div>
<?php endif; ?>

</div>
<div class="carousel-item">
<?php $image = get_field('img_a_4_zdjecia_2'); if( !empty($image) ): ?>
<a href="<?php echo $image['url']; ?>"><img class="d-block m-auto" src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>"></a>
<div class="position-absolute zoomit"><a href="<?php echo $image['url']; ?>"><span class="fas fa-search-plus"></span></a></div>
<?php endif; ?>
</div>
<div class="carousel-item">
<?php $image = get_field('img_a_4_zdjecia_3'); if( !empty($image) ): ?>
<a href="<?php echo $image['url']; ?>"><img class="d-block m-auto" src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>"></a>
<div class="position-absolute zoomit"><a href="<?php echo $image['url']; ?>"><span class="fas fa-search-plus"></span></a></div>
<?php endif; ?>
</div>
<div class="carousel-item">
<?php $image = get_field('img_a_4_zdjecia_4'); if( !empty($image) ): ?>
<a href="<?php echo $image['url']; ?>"><img class="d-block m-auto" src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>"></a>
<div class="position-absolute zoomit"><a href="<?php echo $image['url']; ?>"><span class="fas fa-search-plus"></span></a></div>
<?php endif; ?>
</div>
</div>
<!--/.Slides-->
<!--Controls-->
<a class="carousel-control-prev" href="#carousel-thumb" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Poprzednie</span>
</a>
<a class="carousel-control-next" href="#carousel-thumb" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Następne</span>
</a>
<!--/.Controls-->
</div>

</div>
<div class="col-12 col-lg-2 px-0">
<ol class="carousel-indicators">
<?php $image = get_field('img_a_4_zdjecia_1'); if( !empty($image) ): ?>
<li data-target="#carousel-thumb" data-slide-to="0" class="active"> <img class="d-block w-100" src="<?php echo $image['sizes']['medium']; ?>" class="img-fluid" alt="<?php echo $image['alt']; ?>"></li>
<?php endif; ?>
<?php $image = get_field('img_a_4_zdjecia_2'); if( !empty($image) ): ?>
<li data-target="#carousel-thumb" data-slide-to="1"><img class="d-block w-100" src="<?php echo $image['sizes']['medium']; ?>" class="img-fluid" alt="<?php echo $image['alt']; ?>"></li>
<?php endif; ?>
<?php $image = get_field('img_a_4_zdjecia_3'); if( !empty($image) ): ?>
<li data-target="#carousel-thumb" data-slide-to="2"><img class="d-block w-100" src="<?php echo $image['sizes']['medium']; ?>" class="img-fluid" alt="<?php echo $image['alt']; ?>"></li>
<?php endif; ?>
<?php $image = get_field('img_a_4_zdjecia_4'); if( !empty($image) ): ?>
<li data-target="#carousel-thumb" data-slide-to="2"><img class="d-block w-100" src="<?php echo $image['sizes']['medium']; ?>" class="img-fluid" alt="<?php echo $image['alt']; ?>"></li>
<?php endif; ?>
</ol>
</div>
<!--/.Carousel Wrapper-->
</div>


The big image changes after clicking in the small image (on the right side).



In detail, I mean class=”active”. It changes the colour of the border of the small image and there is everything all right. But what to do to change class=”active” in thumbnail when I switch the big image with the use of arrows (right or left)?



At present my code in JavaScript which adds and removes class=”active” is:



jQuery(function($) {
$('.carousel-indicators > li').click(function() {
$(this).siblings('li').removeClass('active');
$(this).addClass('active');
});
});









share|improve this question
















I have a problem with „carousel” in Bootstrap 4. My carousel code is:



<div class="row">
<div class="col-12 col-lg-10 px-0">
<!--Carousel Wrapper-->
<div id="carousel-thumb" class="carousel slide carousel-fade carousel-thumbnails" data-ride="carousel" data-interval="false">
<!--Slides-->
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<?php $image = get_field('img_a_4_zdjecia_1'); if( !empty($image) ): ?>
<a href="<?php echo $image['url']; ?>"><img class="d-block m-auto" src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>"></a>
<div class="position-absolute zoomit"><a href="<?php echo $image['url']; ?>"><span class="fas fa-search-plus"></span></a></div>
<?php endif; ?>

</div>
<div class="carousel-item">
<?php $image = get_field('img_a_4_zdjecia_2'); if( !empty($image) ): ?>
<a href="<?php echo $image['url']; ?>"><img class="d-block m-auto" src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>"></a>
<div class="position-absolute zoomit"><a href="<?php echo $image['url']; ?>"><span class="fas fa-search-plus"></span></a></div>
<?php endif; ?>
</div>
<div class="carousel-item">
<?php $image = get_field('img_a_4_zdjecia_3'); if( !empty($image) ): ?>
<a href="<?php echo $image['url']; ?>"><img class="d-block m-auto" src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>"></a>
<div class="position-absolute zoomit"><a href="<?php echo $image['url']; ?>"><span class="fas fa-search-plus"></span></a></div>
<?php endif; ?>
</div>
<div class="carousel-item">
<?php $image = get_field('img_a_4_zdjecia_4'); if( !empty($image) ): ?>
<a href="<?php echo $image['url']; ?>"><img class="d-block m-auto" src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>"></a>
<div class="position-absolute zoomit"><a href="<?php echo $image['url']; ?>"><span class="fas fa-search-plus"></span></a></div>
<?php endif; ?>
</div>
</div>
<!--/.Slides-->
<!--Controls-->
<a class="carousel-control-prev" href="#carousel-thumb" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Poprzednie</span>
</a>
<a class="carousel-control-next" href="#carousel-thumb" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Następne</span>
</a>
<!--/.Controls-->
</div>

</div>
<div class="col-12 col-lg-2 px-0">
<ol class="carousel-indicators">
<?php $image = get_field('img_a_4_zdjecia_1'); if( !empty($image) ): ?>
<li data-target="#carousel-thumb" data-slide-to="0" class="active"> <img class="d-block w-100" src="<?php echo $image['sizes']['medium']; ?>" class="img-fluid" alt="<?php echo $image['alt']; ?>"></li>
<?php endif; ?>
<?php $image = get_field('img_a_4_zdjecia_2'); if( !empty($image) ): ?>
<li data-target="#carousel-thumb" data-slide-to="1"><img class="d-block w-100" src="<?php echo $image['sizes']['medium']; ?>" class="img-fluid" alt="<?php echo $image['alt']; ?>"></li>
<?php endif; ?>
<?php $image = get_field('img_a_4_zdjecia_3'); if( !empty($image) ): ?>
<li data-target="#carousel-thumb" data-slide-to="2"><img class="d-block w-100" src="<?php echo $image['sizes']['medium']; ?>" class="img-fluid" alt="<?php echo $image['alt']; ?>"></li>
<?php endif; ?>
<?php $image = get_field('img_a_4_zdjecia_4'); if( !empty($image) ): ?>
<li data-target="#carousel-thumb" data-slide-to="2"><img class="d-block w-100" src="<?php echo $image['sizes']['medium']; ?>" class="img-fluid" alt="<?php echo $image['alt']; ?>"></li>
<?php endif; ?>
</ol>
</div>
<!--/.Carousel Wrapper-->
</div>


The big image changes after clicking in the small image (on the right side).



In detail, I mean class=”active”. It changes the colour of the border of the small image and there is everything all right. But what to do to change class=”active” in thumbnail when I switch the big image with the use of arrows (right or left)?



At present my code in JavaScript which adds and removes class=”active” is:



jQuery(function($) {
$('.carousel-indicators > li').click(function() {
$(this).siblings('li').removeClass('active');
$(this).addClass('active');
});
});






javascript jquery css






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 19 '18 at 20:22









halfer

14.5k758111




14.5k758111










asked Nov 19 '18 at 19:13









Tomasz B.Tomasz B.

114




114













  • @YashKaranke: please do not correct the spelling of "colour". It is the British spelling, and is perfectly acceptable.

    – halfer
    Nov 19 '18 at 20:23



















  • @YashKaranke: please do not correct the spelling of "colour". It is the British spelling, and is perfectly acceptable.

    – halfer
    Nov 19 '18 at 20:23

















@YashKaranke: please do not correct the spelling of "colour". It is the British spelling, and is perfectly acceptable.

– halfer
Nov 19 '18 at 20:23





@YashKaranke: please do not correct the spelling of "colour". It is the British spelling, and is perfectly acceptable.

– halfer
Nov 19 '18 at 20:23












3 Answers
3






active

oldest

votes


















0














you can use jQuery keycode events check this for reference and keycode values from here






share|improve this answer































    0















    But what to do to change class=”active” in thumbnail when I switch the big image with the use of arrows (right or left)?




    If I understood this correctly, you want to change the class="active" once your carousel changes image (using arrow keys). To do this you can use the bootstrap 4 events for the carousel.



    $('#carousel-thumb').on('slide.bs.carousel', function () {
    var indicatorId = $('.carousel-indicators > li.active').data('slide-to');

    if (indicatorId === 3) {
    indicatorId = 0;
    } else {
    indicatorId++;
    }

    $('.carousel-indicators > li.active').removeClass('active');
    $('.carousel-indicators > li[data-slide-to="' + indicatorId + '"]').addClass('active');

    });


    This should do it. Just a quick explanation, the event slide.bs.carousel runs every time your carousel changes and it gets the id of the previous slide using the data-slide-to attribute and then adds one to it to go to the next and if the it was the last slide, it resets. If in the future you add more slides just change the indicatorId === 3 line to match the number of slides you have.



    Also you should fix this mistake in your code data-slide-to="2" is repeated 2 times. Make the last one to be 3 so that this works.






    share|improve this answer

































      0














      Solved! :)



      <script>
      jQuery(function($) {
      function initCarouselIndicators() {
      $(".carousel-indicators[data-target]").each(function (i, indicators) {
      var targetId = indicators.dataset.target;
      if (targetId != "") {
      var $carousel = $(targetId);
      $carousel.bind('slide.bs.carousel', function (e) {
      var $targetSlide = $(e.relatedTarget);
      var index = $targetSlide.index();
      $('.carousel-indicators[data-target="' + targetId + '"] li').removeClass('active')
      $('.carousel-indicators[data-target="' + targetId + '"] li:nth-child(' + (index + 1) + ')').addClass('active');
      });
      }
      });
      }

      initCarouselIndicators();
      });
      </script>


      and it was missing data-target="#myCarousel" in class="carousel-indicators"



      <ol class="carousel-indicators" data-target="#carousel-thumb">





      share|improve this answer























        Your Answer






        StackExchange.ifUsing("editor", function () {
        StackExchange.using("externalEditor", function () {
        StackExchange.using("snippets", function () {
        StackExchange.snippets.init();
        });
        });
        }, "code-snippets");

        StackExchange.ready(function() {
        var channelOptions = {
        tags: "".split(" "),
        id: "1"
        };
        initTagRenderer("".split(" "), "".split(" "), channelOptions);

        StackExchange.using("externalEditor", function() {
        // Have to fire editor after snippets, if snippets enabled
        if (StackExchange.settings.snippets.snippetsEnabled) {
        StackExchange.using("snippets", function() {
        createEditor();
        });
        }
        else {
        createEditor();
        }
        });

        function createEditor() {
        StackExchange.prepareEditor({
        heartbeatType: 'answer',
        autoActivateHeartbeat: false,
        convertImagesToLinks: true,
        noModals: true,
        showLowRepImageUploadWarning: true,
        reputationToPostImages: 10,
        bindNavPrevention: true,
        postfix: "",
        imageUploader: {
        brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
        contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
        allowUrls: true
        },
        onDemand: true,
        discardSelector: ".discard-answer"
        ,immediatelyShowMarkdownHelp:true
        });


        }
        });














        draft saved

        draft discarded


















        StackExchange.ready(
        function () {
        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53381169%2fhow-to-change-class-active-in-carousel-bootstrap-4-with-the-use-of-javascrip%23new-answer', 'question_page');
        }
        );

        Post as a guest















        Required, but never shown

























        3 Answers
        3






        active

        oldest

        votes








        3 Answers
        3






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes









        0














        you can use jQuery keycode events check this for reference and keycode values from here






        share|improve this answer




























          0














          you can use jQuery keycode events check this for reference and keycode values from here






          share|improve this answer


























            0












            0








            0







            you can use jQuery keycode events check this for reference and keycode values from here






            share|improve this answer













            you can use jQuery keycode events check this for reference and keycode values from here







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Nov 19 '18 at 19:24









            Swapnil SoniSwapnil Soni

            125




            125

























                0















                But what to do to change class=”active” in thumbnail when I switch the big image with the use of arrows (right or left)?




                If I understood this correctly, you want to change the class="active" once your carousel changes image (using arrow keys). To do this you can use the bootstrap 4 events for the carousel.



                $('#carousel-thumb').on('slide.bs.carousel', function () {
                var indicatorId = $('.carousel-indicators > li.active').data('slide-to');

                if (indicatorId === 3) {
                indicatorId = 0;
                } else {
                indicatorId++;
                }

                $('.carousel-indicators > li.active').removeClass('active');
                $('.carousel-indicators > li[data-slide-to="' + indicatorId + '"]').addClass('active');

                });


                This should do it. Just a quick explanation, the event slide.bs.carousel runs every time your carousel changes and it gets the id of the previous slide using the data-slide-to attribute and then adds one to it to go to the next and if the it was the last slide, it resets. If in the future you add more slides just change the indicatorId === 3 line to match the number of slides you have.



                Also you should fix this mistake in your code data-slide-to="2" is repeated 2 times. Make the last one to be 3 so that this works.






                share|improve this answer






























                  0















                  But what to do to change class=”active” in thumbnail when I switch the big image with the use of arrows (right or left)?




                  If I understood this correctly, you want to change the class="active" once your carousel changes image (using arrow keys). To do this you can use the bootstrap 4 events for the carousel.



                  $('#carousel-thumb').on('slide.bs.carousel', function () {
                  var indicatorId = $('.carousel-indicators > li.active').data('slide-to');

                  if (indicatorId === 3) {
                  indicatorId = 0;
                  } else {
                  indicatorId++;
                  }

                  $('.carousel-indicators > li.active').removeClass('active');
                  $('.carousel-indicators > li[data-slide-to="' + indicatorId + '"]').addClass('active');

                  });


                  This should do it. Just a quick explanation, the event slide.bs.carousel runs every time your carousel changes and it gets the id of the previous slide using the data-slide-to attribute and then adds one to it to go to the next and if the it was the last slide, it resets. If in the future you add more slides just change the indicatorId === 3 line to match the number of slides you have.



                  Also you should fix this mistake in your code data-slide-to="2" is repeated 2 times. Make the last one to be 3 so that this works.






                  share|improve this answer




























                    0












                    0








                    0








                    But what to do to change class=”active” in thumbnail when I switch the big image with the use of arrows (right or left)?




                    If I understood this correctly, you want to change the class="active" once your carousel changes image (using arrow keys). To do this you can use the bootstrap 4 events for the carousel.



                    $('#carousel-thumb').on('slide.bs.carousel', function () {
                    var indicatorId = $('.carousel-indicators > li.active').data('slide-to');

                    if (indicatorId === 3) {
                    indicatorId = 0;
                    } else {
                    indicatorId++;
                    }

                    $('.carousel-indicators > li.active').removeClass('active');
                    $('.carousel-indicators > li[data-slide-to="' + indicatorId + '"]').addClass('active');

                    });


                    This should do it. Just a quick explanation, the event slide.bs.carousel runs every time your carousel changes and it gets the id of the previous slide using the data-slide-to attribute and then adds one to it to go to the next and if the it was the last slide, it resets. If in the future you add more slides just change the indicatorId === 3 line to match the number of slides you have.



                    Also you should fix this mistake in your code data-slide-to="2" is repeated 2 times. Make the last one to be 3 so that this works.






                    share|improve this answer
















                    But what to do to change class=”active” in thumbnail when I switch the big image with the use of arrows (right or left)?




                    If I understood this correctly, you want to change the class="active" once your carousel changes image (using arrow keys). To do this you can use the bootstrap 4 events for the carousel.



                    $('#carousel-thumb').on('slide.bs.carousel', function () {
                    var indicatorId = $('.carousel-indicators > li.active').data('slide-to');

                    if (indicatorId === 3) {
                    indicatorId = 0;
                    } else {
                    indicatorId++;
                    }

                    $('.carousel-indicators > li.active').removeClass('active');
                    $('.carousel-indicators > li[data-slide-to="' + indicatorId + '"]').addClass('active');

                    });


                    This should do it. Just a quick explanation, the event slide.bs.carousel runs every time your carousel changes and it gets the id of the previous slide using the data-slide-to attribute and then adds one to it to go to the next and if the it was the last slide, it resets. If in the future you add more slides just change the indicatorId === 3 line to match the number of slides you have.



                    Also you should fix this mistake in your code data-slide-to="2" is repeated 2 times. Make the last one to be 3 so that this works.







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Nov 19 '18 at 20:23









                    halfer

                    14.5k758111




                    14.5k758111










                    answered Nov 19 '18 at 19:57









                    Mahan_FMahan_F

                    486411




                    486411























                        0














                        Solved! :)



                        <script>
                        jQuery(function($) {
                        function initCarouselIndicators() {
                        $(".carousel-indicators[data-target]").each(function (i, indicators) {
                        var targetId = indicators.dataset.target;
                        if (targetId != "") {
                        var $carousel = $(targetId);
                        $carousel.bind('slide.bs.carousel', function (e) {
                        var $targetSlide = $(e.relatedTarget);
                        var index = $targetSlide.index();
                        $('.carousel-indicators[data-target="' + targetId + '"] li').removeClass('active')
                        $('.carousel-indicators[data-target="' + targetId + '"] li:nth-child(' + (index + 1) + ')').addClass('active');
                        });
                        }
                        });
                        }

                        initCarouselIndicators();
                        });
                        </script>


                        and it was missing data-target="#myCarousel" in class="carousel-indicators"



                        <ol class="carousel-indicators" data-target="#carousel-thumb">





                        share|improve this answer




























                          0














                          Solved! :)



                          <script>
                          jQuery(function($) {
                          function initCarouselIndicators() {
                          $(".carousel-indicators[data-target]").each(function (i, indicators) {
                          var targetId = indicators.dataset.target;
                          if (targetId != "") {
                          var $carousel = $(targetId);
                          $carousel.bind('slide.bs.carousel', function (e) {
                          var $targetSlide = $(e.relatedTarget);
                          var index = $targetSlide.index();
                          $('.carousel-indicators[data-target="' + targetId + '"] li').removeClass('active')
                          $('.carousel-indicators[data-target="' + targetId + '"] li:nth-child(' + (index + 1) + ')').addClass('active');
                          });
                          }
                          });
                          }

                          initCarouselIndicators();
                          });
                          </script>


                          and it was missing data-target="#myCarousel" in class="carousel-indicators"



                          <ol class="carousel-indicators" data-target="#carousel-thumb">





                          share|improve this answer


























                            0












                            0








                            0







                            Solved! :)



                            <script>
                            jQuery(function($) {
                            function initCarouselIndicators() {
                            $(".carousel-indicators[data-target]").each(function (i, indicators) {
                            var targetId = indicators.dataset.target;
                            if (targetId != "") {
                            var $carousel = $(targetId);
                            $carousel.bind('slide.bs.carousel', function (e) {
                            var $targetSlide = $(e.relatedTarget);
                            var index = $targetSlide.index();
                            $('.carousel-indicators[data-target="' + targetId + '"] li').removeClass('active')
                            $('.carousel-indicators[data-target="' + targetId + '"] li:nth-child(' + (index + 1) + ')').addClass('active');
                            });
                            }
                            });
                            }

                            initCarouselIndicators();
                            });
                            </script>


                            and it was missing data-target="#myCarousel" in class="carousel-indicators"



                            <ol class="carousel-indicators" data-target="#carousel-thumb">





                            share|improve this answer













                            Solved! :)



                            <script>
                            jQuery(function($) {
                            function initCarouselIndicators() {
                            $(".carousel-indicators[data-target]").each(function (i, indicators) {
                            var targetId = indicators.dataset.target;
                            if (targetId != "") {
                            var $carousel = $(targetId);
                            $carousel.bind('slide.bs.carousel', function (e) {
                            var $targetSlide = $(e.relatedTarget);
                            var index = $targetSlide.index();
                            $('.carousel-indicators[data-target="' + targetId + '"] li').removeClass('active')
                            $('.carousel-indicators[data-target="' + targetId + '"] li:nth-child(' + (index + 1) + ')').addClass('active');
                            });
                            }
                            });
                            }

                            initCarouselIndicators();
                            });
                            </script>


                            and it was missing data-target="#myCarousel" in class="carousel-indicators"



                            <ol class="carousel-indicators" data-target="#carousel-thumb">






                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Nov 20 '18 at 11:42









                            Tomasz B.Tomasz B.

                            114




                            114






























                                draft saved

                                draft discarded




















































                                Thanks for contributing an answer to Stack Overflow!


                                • Please be sure to answer the question. Provide details and share your research!

                                But avoid



                                • Asking for help, clarification, or responding to other answers.

                                • Making statements based on opinion; back them up with references or personal experience.


                                To learn more, see our tips on writing great answers.




                                draft saved


                                draft discarded














                                StackExchange.ready(
                                function () {
                                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53381169%2fhow-to-change-class-active-in-carousel-bootstrap-4-with-the-use-of-javascrip%23new-answer', 'question_page');
                                }
                                );

                                Post as a guest















                                Required, but never shown





















































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown

































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown







                                Popular posts from this blog

                                鏡平學校

                                ꓛꓣだゔៀៅຸ໢ທຮ໕໒ ,ໂ'໥໓າ໼ឨឲ៵៭ៈゎゔit''䖳𥁄卿' ☨₤₨こゎもょの;ꜹꟚꞖꞵꟅꞛေၦေɯ,ɨɡ𛃵𛁹ޝ޳ޠ޾,ޤޒޯ޾𫝒𫠁သ𛅤チョ'サノބޘދ𛁐ᶿᶇᶀᶋᶠ㨑㽹⻮ꧬ꧹؍۩وَؠ㇕㇃㇪ ㇦㇋㇋ṜẰᵡᴠ 軌ᵕ搜۳ٰޗޮ޷ސޯ𫖾𫅀ल, ꙭ꙰ꚅꙁꚊꞻꝔ꟠Ꝭㄤﺟޱސꧨꧼ꧴ꧯꧽ꧲ꧯ'⽹⽭⾁⿞⼳⽋២៩ញណើꩯꩤ꩸ꩮᶻᶺᶧᶂ𫳲𫪭𬸄𫵰𬖩𬫣𬊉ၲ𛅬㕦䬺𫝌𫝼,,𫟖𫞽ហៅ஫㆔ాఆఅꙒꚞꙍ,Ꙟ꙱エ ,ポテ,フࢰࢯ𫟠𫞶 𫝤𫟠ﺕﹱﻜﻣ𪵕𪭸𪻆𪾩𫔷ġ,ŧآꞪ꟥,ꞔꝻ♚☹⛵𛀌ꬷꭞȄƁƪƬșƦǙǗdžƝǯǧⱦⱰꓕꓢႋ神 ဴ၀க௭எ௫ឫោ ' េㇷㇴㇼ神ㇸㇲㇽㇴㇼㇻㇸ'ㇸㇿㇸㇹㇰㆣꓚꓤ₡₧ ㄨㄟ㄂ㄖㄎ໗ツڒذ₶।ऩछएोञयूटक़कयँृी,冬'𛅢𛅥ㇱㇵㇶ𥄥𦒽𠣧𠊓𧢖𥞘𩔋цѰㄠſtʯʭɿʆʗʍʩɷɛ,əʏダヵㄐㄘR{gỚṖḺờṠṫảḙḭᴮᵏᴘᵀᵷᵕᴜᴏᵾq﮲ﲿﴽﭙ軌ﰬﶚﶧ﫲Ҝжюїкӈㇴffצּ﬘﭅﬈軌'ffistfflſtffतभफɳɰʊɲʎ𛁱𛁖𛁮𛀉 𛂯𛀞నఋŀŲ 𫟲𫠖𫞺ຆຆ ໹້໕໗ๆทԊꧢꧠ꧰ꓱ⿝⼑ŎḬẃẖỐẅ ,ờỰỈỗﮊDžȩꭏꭎꬻ꭮ꬿꭖꭥꭅ㇭神 ⾈ꓵꓑ⺄㄄ㄪㄙㄅㄇstA۵䞽ॶ𫞑𫝄㇉㇇゜軌𩜛𩳠Jﻺ‚Üမ႕ႌႊၐၸဓၞၞၡ៸wyvtᶎᶪᶹစဎ꣡꣰꣢꣤ٗ؋لㇳㇾㇻㇱ㆐㆔,,㆟Ⱶヤマފ޼ޝަݿݞݠݷݐ',ݘ,ݪݙݵ𬝉𬜁𫝨𫞘くせぉて¼óû×ó£…𛅑הㄙくԗԀ5606神45,神796'𪤻𫞧ꓐ㄁ㄘɥɺꓵꓲ3''7034׉ⱦⱠˆ“𫝋ȍ,ꩲ軌꩷ꩶꩧꩫఞ۔فڱێظペサ神ナᴦᵑ47 9238їﻂ䐊䔉㠸﬎ffiﬣ,לּᴷᴦᵛᵽ,ᴨᵤ ᵸᵥᴗᵈꚏꚉꚟ⻆rtǟƴ𬎎

                                Why https connections are so slow when debugging (stepping over) in Java?