Execute script after any ajax request
You can use any of the global ajax events that meet your needs here, you’re probably after $.ajaxComplete() or $.ajaxSuccess(). For example: FYI, ajaxSuccess() would be called when your request successfully does what is assumed to do, means successfully rendered back from server with a 200 OK response. But ajaxComplete() is something which would be […]
Execute script after any ajax request Read More »