[Solved] How to hide / show a button in jQuery


Jquery has two functions show and hide:

$('#a').click(function(){
  $('#a').hide();
});

$('#b').click(function(){
  $('#a').show();
});

$('#c').click(function(){
  $('#a').show();
});

1

solved How to hide / show a button in jQuery