Answers for "javascript call in external file inside html"

0

How to add js file to a site through url

var jsFile = document.createElement("script");
jsFile.src = "homePage.js";  // it can be path also  "{themes('/scripts/homePage.js')}"
document.body.appendChild(jsFile);  //append it as src to body
Posted by: Guest on October-29-2020
-1

javascript class in external file

class User {
    //...
}

module.exports = User
Posted by: Guest on November-08-2020

Code answers related to "javascript call in external file inside html"

Browse Popular Code Answers by Language