[Solved] Make div disappear and appear by clicking another div


use .toggle() for example…

$(function(){
  $("#red").on('click', function(){
      console.log('click on red div');
      $("#blue").toggle( "slow", function() {
        // Animation complete.
      });
  });
});
#red{
height: 100px;
width: 100px;
background: red;
}
#blue{
height: 100px;
width: 100px;
background: blue;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="red"></div>
<div id="blue"></div>

solved Make div disappear and appear by clicking another div