In my site header I have a script tag which loads a secure certificate badge.
This badge is loaded from the certificate authority server and is sometimes slow to load.
This also slows down the loading of the rest of the site, since it is waiting for the badge to finish loading.
Is there any way to tell the rendering browser to continue loading other elements and not wait for the script to load?
You can do “lazy” loading of scripts using something like load.js – prevent the scripts from blocking.