I have a website where I don't have access to the source but I can manipulate it using Javascript. I have a file called main.js
that has been included at the very end of the includes to which I have the access to and I would like to run my custom Javascript code in that file. I have a .JS
file with a function called helloWorld()
on my server that I would like to load before any $(document).ready()
callback fires, because one of the $(document).ready()
functions on my website page/pages uses this function.
Custom .JS file:
function helloWorld()
{
alert("Hello World");
}
main.js file on the server (Accessible):
//All the JS code that the website uses
..
// My custom javascript code that includes my custom .JS file
$.getScript("helloWorld.js", function()
{
// Use anything defined in the loaded script...
});
Now I would like the helloWorld()
to be loaded whilst the page is loading and before any $(document).ready()
functions fired. I understand that loading this .JS
file while the page is loading will possibly slow down the page load. Is there a bullet-proof way of making sure that my custom javascript function will be loaded prior to any $(document).ready()
's? If there is any other way I can achieve this, please do let me know. Looking forward to your suggestions.
I have a website where I don't have access to the source but I can manipulate it using Javascript. I have a file called main.js
that has been included at the very end of the includes to which I have the access to and I would like to run my custom Javascript code in that file. I have a .JS
file with a function called helloWorld()
on my server that I would like to load before any $(document).ready()
callback fires, because one of the $(document).ready()
functions on my website page/pages uses this function.
Custom .JS file:
function helloWorld()
{
alert("Hello World");
}
main.js file on the server (Accessible):
//All the JS code that the website uses
..
// My custom javascript code that includes my custom .JS file
$.getScript("helloWorld.js", function()
{
// Use anything defined in the loaded script...
});
Now I would like the helloWorld()
to be loaded whilst the page is loading and before any $(document).ready()
functions fired. I understand that loading this .JS
file while the page is loading will possibly slow down the page load. Is there a bullet-proof way of making sure that my custom javascript function will be loaded prior to any $(document).ready()
's? If there is any other way I can achieve this, please do let me know. Looking forward to your suggestions.
- Is your main.js file inside the head of the document? – Marco Bonelli Commented Apr 22, 2015 at 13:45
- Yes it is in the head of the document. – Neophile Commented Apr 22, 2015 at 15:51
2 Answers
Reset to default 6 +50Looks like I found a solution for your problem. I wouldn't suggest it, but it's the only way you can load an external script from another one before the DOMContentLoaded
event fires.
Solution
Since that your main.js
script is in the <head>
of your document, you can be sure that it will be loaded and executed before any following part of the DOM. Given this, you can use a synchronous XMLHttpRequest
to load your script and execute it.
This kind of technique has some pros and cons:
Pros: you can load and execute any script before
DOMContentLoaded
, and also multiple scripts sequentially.Cons: your document will be frozen until the requests are pleted.
Not that bad, if your script isn't enormous it will not drastically impact the loading time. We can still do it.
Implementation
First of all, make sure that your custom.js
script is served over a link which will always be reachable, so that your request will not fail. Also make sure that your main.js
script hasn't got async
or defer
properties, so that it will always be executed in the <head>
, before the DOMContentLoaded
event.
<!-- NOT GOOD -->
<script src="main.js" defer></script>
<script src="main.js" async></script>
<!-- GOOD :) -->
<script src="main.js"></script>
Now that you're ready, in your main.js
script you'll need to:
Create and initialize a synchronous
XMLHttpRequest
object, andsend()
aGET
request to yourcontent.js
script.Create a
<script>
element, and put the result of your request (which is stored in the.responseText
property of the request object) inside it.Append the script to the
<head>
to make it run before the DOM is loaded.
Plus, if you also want your script to be removed right after execution (so it will not be visible to the users), you can:
- Remove the
<script>
from the document after it has ran its code. You'll need to listen for theonload
event for this.
Also, if you want to make your code run pletely anonymously, you can wrap it inside an anonymous function
to prevent the access to it from the global scope.
Here's a quick example of what you'll need to do in your main.js
file:
(function() {
// Create the request and the script
var xhr = new XMLHttpRequest(),
s = document.createElement('script');
// Send the request to retrieve custom.js
xhr.open('GET', 'path/to/custom.js', false);
xhr.send();
// Listen for onload, and remove the script after execution
s.addEventListener("load", function(e) {
s.parentElement.removeChild(s);
});
// Load the code inside the script and run it in the head
s.textContent = xhr.responseText;
document.head.appendChild(s);
})();
Now your custom.js
script will (anonymously) run before DOMContentLoaded
, mission plete!
As far as I can see, there are multiple ways of doing this, but the best way would be to use something like Require.js or CommonJS to resolve your dependencies, concat them, and and publish the resulting concatenated javascript file (or many if you can divide your app into multiple sections).
The not-so-great method would be to use the main script to load other scripts by adding script tags, this way you can ensure its there since its the one loading the other scripts.