buenas noches
estoy tratando de bloquear botones de next y prev mientras se este ejecutando una animación con jquery, agradezco cualquier ayuda respecto al tema
el código es el siguiente
(function($, window) {
'use strict';
if (settings.arrows) {
$this.append('<span class="prev">' + defaul.prev + '</span><span class="next">' + defaul.next + '</span>');
$($this).on('click', 'span.prev', function() {
window.clearInterval(settings.interval);
if (settings.autoSlider) {
settings.interval = window.setInterval(function() {
init.go();
}, 7000);
}
defaul.slider -= 2;
init.go(defaul.prev, 'prev');
return false;
});
$($this).on('click', 'span.next', function() {
window.clearInterval(settings.interval);
if (settings.autoSlider) {
settings.interval = window.setInterval(function() {
init.go();
}, 7000);
}
init.go(defaul.next, 'next');
return false;
});
}
init = {
go: function() {
}
};
}(jQuery, window));