I want to insert a script tag before all the rest of the scripts in the head tag. How would I do that with native javascript?
<head>
//INSERT SCRIPT HERE
<script type="text/javascript" src="common.js"></script>
<script type="text/javascript" src="omni-controls.js"></script>
</head>
When I use this, it just appends after all the tags in the head tag.
document.getElementsByTagName("head")[0].appendChild(script);
var head = document.getElementsByTagName("head")[0]
head.insertBefore(script, head.firstChild);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With