Answers for "how to use a javascript file from another website"

50

javascript link to another page

window.location.href = "http://mywebsite.com/home.html";
Posted by: Guest on July-18-2019
5

javascript using another js file

// module.js
export function hello() {
  return "Hello";
}

// main.js
import {hello} from 'module'; // or './module'
let val = hello(); // val is "Hello";
Posted by: Guest on March-15-2020

Code answers related to "how to use a javascript file from another website"

Code answers related to "Javascript"

Browse Popular Code Answers by Language