Created
September 22, 2021 19:13
-
-
Save TeamBug99/b197b4d98f946d76ef87fb652d295fe6 to your computer and use it in GitHub Desktop.
owl-dots numbering
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// way one | |
var i = 1; | |
$('.owl-carousel .owl-dot').each(function(){ | |
$(this).text(i); | |
i++; | |
}); | |
//way two | |
var dot = $('.slideWrap .owl-dot'); | |
dot.each(function() { | |
var index = $(this).index() + 1; | |
if(index < 10){ | |
$(this).html('0').append(index); | |
}else{ | |
$(this).html(index); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment