I need to execute 20 REST API calls when a button is clicked. Upon inspection, I noticed that Chrome restricts the number of concurrent calls to 6 and queues the rest of them. Currently, I am using $.ajax for making these API calls. Is there a way to override this default limitation set by browsers?