Answers for "external Jquery file from your index.html"

1

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
0

js jquery include external script

// jQuery
$.getScript('/path/to/imported/script.js', function()
{
    // script is now loaded and executed.
    // put your dependent JS here.
});
Posted by: Guest on April-29-2021

Code answers related to "external Jquery file from your index.html"

Code answers related to "Javascript"

Browse Popular Code Answers by Language