0 votes
in JQuery by
What are all the ways to include jQuery on a page?

1 Answer

0 votes
by
You can use <script> to add the library in the HTML <head> or <body> tag: <script src='jquery-3.2.1.min.js'></script>

Write the code within the HTML document inside the <script> tag, here we have used cdn link.

<script src='http://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.js'></script>

<script type = “text/javascript”>

$(document)……… <jQuery code>

</script>

Include the .js file, which has the jQuery code into the HTML document.

<script src='script.js' type="text/javascript"></script>

Related questions

0 votes
asked Nov 17, 2020 in JQuery by rajeshsharma
0 votes
asked Nov 17, 2020 in JQuery by rajeshsharma
...