myselfolli
New member
This is really the worst forum to post this in - I know, but it's the only one I can post in since I just signed up. So forgive me ^^
I stumbeled over the following thread: https://xenforo.com/community/threads/reloading-animation.9270/
when looking for a solution to the pesky reload animation that is shown on every ajax call. There were several suggestions, none of which worked for me. But I found an easier solution:
The animation is nested in a div with an "AjaxProgress"-ID. So I just went ahead an removed the element - and the animation was gone. But since the element is only created after the first ajax request, you have to fire one (dummy) call and then immediately after remove the element:
And as simple as that, the animation is removed
I stumbeled over the following thread: https://xenforo.com/community/threads/reloading-animation.9270/
when looking for a solution to the pesky reload animation that is shown on every ajax call. There were several suggestions, none of which worked for me. But I found an easier solution:
The animation is nested in a div with an "AjaxProgress"-ID. So I just went ahead an removed the element - and the animation was gone. But since the element is only created after the first ajax request, you have to fire one (dummy) call and then immediately after remove the element:
JavaScript:
$("#AjaxProgress").remove();
And as simple as that, the animation is removed