$(document).ready(function () { var language = $('meta[name=language]').attr("content"); if (language === 'es-AR') { $('body').prepend('

Cargando datos...

'); } else { $('body').prepend('

Aguarde...

'); } }); //$(document).unbind(function() { // $('#ajaxBusy').show(); //}) $(document).ajaxStart(function() { $('#ajaxBusy').show(); //alert('start'); }).ajaxStop(function() { $('#ajaxBusy').hide(); //alert('stop'); });