Answers for "jquery script tag"

3

jquery script tag

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>

// Put this script in the head of your index.html to load jQuery
// The Google Hosted Libraries is a stable, reliable, high-speed, 
// globally available content distribution network for the most popular, 
// open-source JavaScript libraries.

// Google works directly with the key stakeholders for each library effort 
// and accepts the latest versions as they are released.
Posted by: Guest on November-02-2020
3

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">
	// The vanilla way of accessing our example p element is
  	var e = document.getElementById('example');
  	// Then we would faff about with 'e'
  
  	// With jQuery we can get it like...
  	var ej = $('#example');
  
  	// jQuery has its own methods, instead of innerText and
  	// all those similar properties, we can do
  	$('#example').text("Goodbye everybody, I've got to go");
  
  	// Our example p element text will have changed :)
</script>
Posted by: Guest on March-13-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 "Javascript"

Browse Popular Code Answers by Language