Add AJAX loader gif in prestashop -


i have 2 questions regarding prestashop.

1) how add ajax loader image in prestashop ajax call?

2) can add ajax loader image every ajax call in prestashop placing code in 1 place?

i new prestashop, pardon naive question if is.

you can add script listen ajax calls

//listen ajax start event $( document ).ajaxstart(function() {   $('#my_loader').fadein(); });  //listen ajax complete event $( document ).ajaxcomplete(function() {   $('#my_loader').fadeout(); }); 

you loader html should this

<img id="my_loader" src="..." /> 

Comments

Popular posts from this blog

Email notification in google apps script -

c++ - Difference between pre and post decrement in recursive function argument -

javascript - IE11 incompatibility with jQuery's 'readonly'? -