Currently, I have numerous ajax requests running concurrently and I would like to trigger a function once they all have completed.
I came across the jQuery function: ajaxStop()
, however, I am unable to utilize jQuery in this particular project.
Is there a way to achieve the same functionality using only JavaScript?
Appreciate any assistance provided!