Categories: jQuery

Include multiple js files using jQuery $.getScript() method

Share

The jQuery getScript() method is used to Include multiple js files i.e. load and execute a JavaScript from the server using an AJAX HTTP GET request.

The method returns XMLHttpRequest object and the callback is fired once the script has been loaded, but not necessarily executed.

Syntax of getScript:

$(selector).getScript(url,success(response,status))
$.getScript( "test.js", function( data, textStatus, jqxhr ) {
console.log( data );
});

Suppose we have following code named check.js

function CheckEnabled(){
alert("JavaScript is enabled.");
}

Get more details from jQuery reference.

Following is a simple example of the usage of this method:

<script type = "text/javascript" language = "javascript">
$(document).ready(function() {
$.getScript('check.js', function(jd) {
CheckJS();
});
});
</script>

Read Also: Load JSON encoded data using jQuery.getJSON()

By default, $.getScript() method sets the cache setting to false. This appends a timestamped query parameter to the request URL for ensuring that browser downloads the script each time it is requested.
But, you can override this feature by setting the cache property globally using $.ajaxSetup() method:

$.ajaxSetup({
cache: true
});

Recent Posts

The Rise of NFTs: Exploring the Impact of Non-Fungible Tokens on the Digital Economy

NFTs, or Non-Fungible Tokens, are revolutionizing the digital economy. These unique digital assets, authenticated through…

13 hours ago

Unveiling the Truth: Is the Spread of Sinus Infections a Myth or Reality?

Sinus infections, impacting approximately 31 million Americans each year, represent a significant health concern stemming…

2 days ago

Best Exercises To Reduce Weight & Keep You Stronger & Fitter!

No doubt that balanced weight is the key to wellness. So, when it comes to…

2 days ago

ARTIFICIAL INTELLIGENCE: Advantages And Disadvantages? Everything You Need to Know

Pros And Cons Of AI: Artificial Intelligence directly translates to conceptualizing and building machines that…

2 days ago

Four common mistakes when picking an internet provider

We all live on the internet; we use it for everything. Thus, when it comes…

2 days ago

What Is Commonly Misdiagnosed as Pink Eye: Understanding Eye Conditions and Their Symptoms

Introduction: Pink eye, or conjunctivitis, is a common eye condition characterized by redness and inflammation…

3 days ago