$(document).ready(function () {
var background = $('<div>').css({
'backgroundColor': '#000',
'width': '100%',
'height': '100%',
'position': 'fixed',
'z-index': '1',
'top': '0',
'left': '0',
'opacity': '0.2'
});
var image = $('<img>').attr({
'src': '../podaty_obyavlenie/image/zagruzka.gif'
});
var text = $('<span>').text('Обработка информации, ждите..').css({
'font-family': 'Verdana, Arial, Helvetica, sans-serif',
'font-weight': 'bold',
'font-size': '16px',
'color': '#000099'
});
var loading = $('<div>').css({
'z-index': '100',
'position': 'fixed',
'top': '40%',
'left': '50%',
'margin': '-64px 0 0 -64px',
'text-align': 'center'
}).html(image).append('<br><br>').append(text);
$('#submit').click(function () {
$('body').prepend(loading).prepend(background);
});
});