Answers for "which tags is used to write a javascript code in the html page?"

2

javascript create script tag

var script = document.createElement("script");
script.src = "https://url.com/";
document.head.appendChild(script);
Posted by: Guest on May-15-2020

Code answers related to "which tags is used to write a javascript code in the html page?"

Code answers related to "Javascript"

Browse Popular Code Answers by Language