Show ajax spinner. DOM specific, modify as needed.
/**
* @method showAjaxIndicator
* @param targetDiv
*/
showAjaxIndicator : function(targetDiv) {
$(targetDiv).children().css("visibility", "hidden");
$(targetDiv).css('background', 'url("'+LN.getContextPath()+'/resources/default/images/ajax-loader-big.gif") no-repeat center center');
}