You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Scripts that are dynamically created and added to the document are async by default, which means they are not guaranteed to execute in the same order they are added.
The defer attribute tells the browser to download the file, but wait until all of the other stuff is done before running the file. The async attribute tells the browser to download this file, but don’t stop downloading others while you do. The two can be used together.
So, the short answer is files are loaded in the order they appear in the HTML file.
The longer answer is … but it depends!
Currently, all section pages, including about, resume, portfolio, blogs, notes, and contact, are first copy paste from template-section and modified through include-html.js. There should be a better way to reuse the template-section.
Similar ideas shown in each category of blogs, like science. It uses blog-post-loader.js to include necessary contents
The text was updated successfully, but these errors were encountered: