There is a front-end problem in my web-app: for example I have a page with plenty of JS code executed on that page. There is a link on it like
<a href="OneAction.action?nextAction=/further/OneMore.action?param=111"> Examle Link </a>
I want to click on this link before page is loaded completely and actually I can do it in FireFox. Current page stops to loading and browser redirects me to clicked link. But in Chrome nothing happens and I have to wait until the page will be fully loaded. In other case I see in DevTools that this request got "status=cancelled" How can I change Chrome to treat my links in other way? Chrome users don't want to wait till page is loaded if they want to go further clicking the link...
I had read about prerendering and similar stuff but still have no ideas how to resolve it...
I would appreciate for any hints.