$(document).ready(function() { $('#mainForm').submit(function() { $('#btNext').hide(); }); // Ajax animation $("#loaderSpace").ajaxStart(function() { $(this).fadeIn('slow'); $(this).children('div').fadeIn('slow'); }); $("#loaderSpace").ajaxComplete(function(e, xhr, settings) { $(this).fadeOut('slow'); $(this).children('div').fadeOut('slow'); }); $('select.chosen').chosen(); });