Hello! There was a need to rewrite the code written with jquery into vanilla js. I have little js code on my site and I see no reason to include a library such as jquery ?
$('.progress-wrap .dot').on('click', function () {
let $this = $(this)
let stepValue = $this.attr('data-step')
$this.clo...