Answers for "how to take jquery from script tags and place in a file"

3

html include jquery

<!-- Wrap inside the head tag -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
Posted by: Guest on September-29-2020
1

how add script to html in jquery

$.getScript("test.js", function(){
    alert("Running test.js");
});
Posted by: Guest on April-19-2021

Code answers related to "how to take jquery from script tags and place in a file"

Browse Popular Code Answers by Language