$('.add i,.add .v').click(function() { if (!$('.add').hasClass('do')) { $(this).parent().addClass('do'); $('.add h4').fadeOut(500); setTimeout(function() { $('.add.do form').addClass('do'); }, 500); setTimeout(function() { $('.add.do form.do input,.add.do form.do button').addClass('do'); $('#add-photo').focus(); }, 550); return false; } }); $('html').click(function() { if ($('.add').hasClass('do')) { $('.add,.add.do form,.add.do form input,.add.do form button').removeClass('do'); $('.add h4').fadeIn(500); } });