var $tt, $hb, $nl; $(function(){ $vtt = $('#vtt'); $hb = $('#hb'); $nl = $('#nl'); $('#hv').responsiveSlides({ speed: 1000, timeout: 5000, pager: true, before: function(num){ $vtt.data('now', num).stop().animate({'opacity':0}, 500, function(){ $(this).find('li').hide().eq(num).show() $(this).animate({'opacity':1}, 1000); }); } }); $('#hmlt').on('click', function(){ $hb.show(); $nl.show().find('#letter-address').focus(); }); $nl.find('button.cl').on('click', function(){ $hb.hide(); $nl.hide(); }).end().find('form').on('submit', function(){ $.post( $(this).attr('action'), $(this).serialize(), function(data){ alert(data); $('input[name="address"]').val('').focus(); } ); return false; event.preventDefault(); }); });