Skip to content

Instantly share code, notes, and snippets.

@ozknozsrt
Created January 24, 2018 09:47
Show Gist options
  • Save ozknozsrt/3cd60e89534b2b247c181dd4f2488a0a to your computer and use it in GitHub Desktop.
Save ozknozsrt/3cd60e89534b2b247c181dd4f2488a0a to your computer and use it in GitHub Desktop.
show div one by one
$('.toAdd').hide();
var i = 0;
$('#add input').click(function () {
i=(i >= 4)?0:i;
//or if(i >= 4){ i=0;}
$('.toAdd').eq(i).show().siblings().not(':first').hide();
i++;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment