Hi,
I have form where user can choose to enter more than one option. I currently show one input field and hide the remaining 4 input fields for that option.
Previously, I used link under each input to unhide the next input and link.
$(function(){
$(".show").click(function () {
$(this).parent().next("div").show();
evenpreventDefault();
});
});
But I want to use only one link to unhide the hidden inputs one by one(first click = first hidden input, second click = second input..so on.).
Is this possible in jquery, I appreciate any help.