HTML:
var cnt=1; $("#add").click(function() { if(cnt) { $(".input:hidden:first").show() cnt=0; } else{ $(".input:hidden:first").hide() cnt=1; } });