Answers for "append scripts using jquery"

0

append scripts using jquery

var s = document.createElement("script");
s.type = "text/javascript";
s.src = "http://somedomain.com/somescript";
$("head").append(s);
Posted by: Guest on August-29-2020

Code answers related to "append scripts using jquery"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language