jQuery ( javascript , )
, :
$(function(){
$('#yourFormId').on('submit', function(e){
e.preventDefault();
var data = $(this).serialize();
var url = $(this).attr('action');
$('#yourAjaxLoader,#unclickableDiv').fadeIn();
$.post(url+'?'+data, function(){
$('#yourAjaxLoader,#unclickableDiv').fadeOut();
});
});
});
unclickable div, css :
#unclickableDiv
{
z-index:99999;
width: 100%;
height: 100%;
opacity: 0.5;
background-color: black;
display:none;
}
div body. , "" , . ajax div, .
jQuery http://jquery.com, , . ,
:
jQuery on() .submit .click .. 1.7, , . : http://api.jquery.com/on/