bootstrap carousel click event next previous

Solutions on MaxInterview for bootstrap carousel click event next previous by the best coders in the world

showing results for - "bootstrap carousel click event next previous"
Nele
19 Apr 2018
1jQuery('.left').click(function() {
2  jQuery('#slider2-19').carousel('prev');
3});
4
5jQuery('.right').click(function() {
6  jQuery('#slider2-19').carousel('next');
7});