23 lines
427 B
JavaScript
23 lines
427 B
JavaScript
$(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();
|
|
});
|