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

[ad_1]

Jquery has two functions show and hide:

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

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

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

1

[ad_2]

solved How to hide / show a button in jQuery