I have a really simple idea... have a button (class="upload") that on each subsequent click, I want it to show a new div, for a set maximum number of times.
For example:
$('.upload').click(function() {
$('.upload_block2').show(0);
}, function() {
$('.upload_block3').show(0);
}, function() {
$('.upload_block4').show(0);
}, function() {
$('.upload_block5').show(0);
$('.upload').hide(0);
});
Obviously the code above does not work...
Is this even possible?
