google+javascriptbanktwitter@js_bankfacebook@jsbankrss@jsbank






Simple Tips and Code to Load External JavaScript, CSS Files Dynamically This JavaScript article tutorial guides you how to build a simple JavaScript function for loading JavaScript and CSS external files dynamically. No new thing but this JavaScript snippet is still a good way to make your website become more comfortable.


Free iPage Web Hosting for First Year NOW



If you're still looking for a reliable web host provider with affordable rates, why you don't take a little of time to try iPage, only with $1.89/month, included $500+ Free Extra Credits for the payment of 24 months ($45)?

Over 1,000,000+ existisng customers can not be wrong, definitely you're not, too! More important, when you register the web hosting at iPage through our link, we're going to be happy for resending a full refund to you. That's awesome! You should try iPage web hosting for FREE now! And contact us for anything you need to know about iPage.
Try iPage for FREE First Year NOW

Generally we includes an external css ( Cascading Style Sheets ) and js ( javascript ) files in the HEAD section of our HTML page. We include them by following conventional method -

1<link rel="stylesheet" type="text/css" href="stylesheet/mycss.css"/>
2<script language="javascript" src="javascript/myjs.js" type="text/javascript"></script>

This method added files to the page as they encountered in page source code or synchronously.

Here we will learn how to dynamically load an external file in simple steps.

1. For loading .js or .css file dynamically we use DOM methods to first create new �script� or �link� element. Assign it to appropriate attributes and then finally use appendChild() function to include it into head section on document tree.

Example :

01function includejscssfiles(filename, filetype)
02{
03    if (filetype=="js") //if filename is an JavaScript file
04    {
05        var fileref=document.createElement('script')
06        fileref.setAttribute("type","text/javascript")
07        fileref.setAttribute("src", filename)
08    }
09    else if (filetype=="css") //if filename is an CSS file
10    {
11        var fileref=document.createElement("link")
12        fileref.setAttribute("rel", "stylesheet")
13        fileref.setAttribute("type", "text/css")
14        fileref.setAttribute("href", filename)
15    }
16    if (typeof fileref!="undefined")
17    document.getElementsByTagName("head")[0].appendChild(fileref)
18}

2. Now we will create one more function that contains file name and file type. In this function we will call includejscssfiles() by passing file name and file type as its parameters.

1function loadfiles()
2{
3    includejscssfiles('mycss.css', 'css');
4    includejscssfiles('myjs.js', 'js');
5}

3. Call loadfiles function on onload on tag. Thats it.

function parameter �filetype� lets you tell the script what file type to expect before loading. After that, the function sets out to create the element using the appropriate DOM methods, assign it the proper attributes, and finally, add it to the end of the HEAD section.

By referencing the HEAD element of the page first and then calling appendChild(), this means the newly created element is added to the very end of the HEAD tag.

Hope this tutorial will help you.

AIVideo-App.com
Generate your business videos by AI with voice or just text

chatGPTaz.com
Talk to ChatGPT by your mother language

AppAIVideo
Your first FREE AI Video App

Deepfake Video
Deepfake AI Video Maker

Deepfake
Deepfake AI Video Maker

AI Deep Fake
Deepfake AI Video Maker

AIvidio
AI Video Mobile Solutions

AIvideos
AI Video Platform & Solutions

AIvedio
AI Video App Maker

Faceswap AI Online
Swap Faces Video, Photo & GIFs Instantly with Powerful AI Tools - Faceswap AI Online FREE

Faceswap AI Online
Swap Faces Video, Photo & GIFs Instantly with Powerful AI Tools - Faceswap AI Online FREE

Temu Free $500 for New Users
Claim Free Temu $500 Credit via Affiliate & Influencer Program

Free TikTok Ads Credit
Master TikTok Ads for Your Business Marketing

Dall-E-OpenAI.com
Generate creative images automatically with AI

chatGPT4.win
Talk to ChatGPT by your mother language

First AI Product from Elon Musk - Grok/UN.com
Speak to Grok AI Chatbot with Your Language

Tooly.win
Open tool hub for free to use by any one for every one with hundreds of tools

GateIO.gomymobi.com
Free Airdrops to Claim, Share Up to $150,000 per Project

iPhoneKer.com
Save up to 630$ when buy new iPhone 16

Buy Tesla Optimus Robot
Order Your Tesla Bot: Optimus Gen 2 Robot Today for less than $20k

JavaScript by day


Google Safe Browsing McAfee SiteAdvisor Norton SafeWeb Dr.Web