HTML:
Use toggle()
or the related methods:
$("#add").click(function() {
$(".input:first").toggle();
// or: $(".input:first").fadeToggle();
// or: $(".input:first").slideToggle();
});
JS Fiddle demo: toggle().
JS Fiddle demo: fadeToggle().
JS Fiddle demo: slideToggle().
References:
Try toggle : Further reading
$("#add").click(function() {
$(".input:first").toggle();
});
You can use .toggle() here
$("#add").click(function() {
$(".input:hidden:first").toggle();
});
$("#add").on('click',function() {
$(".input:hidden").toggle();
});
var cnt=1;
$("#add").click(function() {
if(cnt)
{
$(".input:hidden:first").show()
cnt=0;
}
else{
$(".input:hidden:first").hide()
cnt=1;
}
});
$("#add").click(function() {
$(".input:hidden:first").toggle();
});
Should do the trick