I've got a simple slider, and I want that users can click next, prev after for example 500ms after previous click. How to do this? Here's my code:
<script>
jQuery(document).ready(function(){
var ile = jQuery('.bestopis').length;
var licznik = 1;
$("#nast").click(function() {
if(licznik == ile) {licznik=0};
licznik ++;
jQuery('.bestopis').fadeOut();
jQuery("#bestopisy .bestopis:nth-child( " + licznik + " )").fadeIn();
});
$("#pop").click(function() {
if(licznik == 1) {licznik = ile} else {licznik --};
jQuery('.bestopis').fadeOut();
jQuery("#bestopisy .bestopis:nth-child( " + licznik + " )").fadeIn();
});
});
</script>