How can I avoid getting stuck after 100 AJAX calls to the same WebMethod from an ASPX page in JavaScript?

Repeated ajax calls to WebMethod on server got stuck after 100 calls,
It seems thers a boundery in browsers – Chrom/Edge how many ajax calls can be made from the the same aspx page to the same WebMethod

At first I trievd setInterval(MyAjaxFunc,5000)
Than tried not to count on the timer and instead call MyAjaxFunc recorsively, No use