I am using this for async loading the CSS file:
<link rel="preload" href="style.css" as="style" onload="this.rel='stylesheet'">
, but the event doesn't bind in Firefox. In Chrome works fine and preload
is changed to stylesheet
.
In FF stays the same.
I have tried with onload="console.log(90)">
and it binds in Chrome, but no in FF.