$(document).ready(function(){ var about =true; $('#toggle_btn').click(function(){ if (about == true){ $('.imgs .bottom').fadeOut(); about =false; }else{ $('.imgs .bottom').fadeIn(); about =true; } }); });