Example 1: import js in html
<script type="text/javascript" src="yourfile.js"></script>
Example 2: jquery cdn google
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
Example 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>
Example 4: how to use jquery
<!-- First either download, or use CDN and reference it --> <!-- Here we grab it from a CDN --> <script src="https://code.jquery.com/jquery-3.4.1.js" integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=" crossorigin="anonymous"></script> <!-- Lets say we have some <p>, with simple text we give it an id --> <p id="example">Hello, world</p> <!-- We shall now play around with this element using jQuery --> <script type="text/javascript"> var e = document.getElementById('example'); var ej = $('#example'); $('#example').text("Goodbye everybody, I've got to go"); </script>
Example 5: how to add jquery to html
<!--You can insert Jquery into HTML with the <script> tag.--> <head> <script type = 'text/javascript' src = 'https://code.jquery.com/jquery-3.3.1.js'></script> </head>
Example 6: how to start using jQuery CDN
<script src="https://code.jquery.com/jquery-3.4.1.js" integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=" crossorigin="anonymous" ></script>
Comments
Post a Comment