Hi everyone i want to learn how to use jquery fadeToggle for my DEMO
In this demo you can see there is a click show div div. When you click this div then .gelen-mesaj-alani is showing. My question is how can a hide this div when clicked other area ?
$(document).ready(function(){
  $('.click').on('click',function(){
     $(".gelen-mesaj-alani").fadeToggle(300);
  });                  
});
 
     
    