how to do xmlhttprequest progress bar in javascript code example
Example: how to show progress on ajax call
BY LOVE
You need to call the progress bar class, That's IT
beforeSend: function ()
{
$('.loaderimg').show();
},
complete: function ()
{
$(".loaderimg").hide();
}