Posts by Bruno Casas • 1 point
1 post
-
0
votes2
answers62
viewsA: Load a scrip tag after another script tag has been loaded
You can use the Defer attribute of the script tag. <script defer type="text/javascript" src="js/scriptUm.js"></script> <script defer type="text/javascript"…