jQueryn loi vuonna 2006 John Resig. Se on suunniteltu käsittelemään selaimen yhteensopimattomuudet ja yksinkertaistamaan HTML DOM -manipulaatiota, tapahtumien käsittelyä, animaatioita ja Ajaxia.
Yli 10 vuoden ajan jQuery on ollut maailman suosituin JavaScript-kirjasto.
Kuitenkin JavaScript-version 5 (2009) jälkeen useimmat jQuery-apuohjelmat voidaan ratkaista muutamalla rivillä vakio JavaScriptiä:
Poista HTML-elementti:
$("#id02").remove();
Kokeile itse →
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
</head>
<body>
<h2>Remove an HTML Element</h2>
<p id="id01">Hello World!</p>
<p id="id02">Hello Sweden!</p>
<script>
$(document).ready(function() {
$("#id02").remove();
});
</script>
</body>
</html>
document.getElementById("id02").remove();
Kokeile itse →
<!DOCTYPE html>
<html>
<body>
<h2>Remove an HTML Element</h2>
<p id="id01">Hello World!</p>
<p id="id02">Hello Sweden!</p>
<script>
document.getElementById("id02").remove();
</script>
</body>
</html>
Palauta HTML-elementin ylätaso:
myParent = $("#02").parent().prop("nodeName"); ;
Kokeile itse →
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
</head>
<body>
<h2>Getting Parent HTML Element</h2>
<p id="01">Hello World!</p>
<p id="02">Hello Sweden!</p>
<p id="demo"></p>
<script>
$(document).ready(function() {
$("#demo").text($("#02").parent().prop("nodeName"));
});
</script>
</body>
</html>
myParent = document.getElementById("02").parentNode.nodeName;
Kokeile itse →
<!DOCTYPE html>
<html>
<body>
<h2>Get Parent HTML Element</h2>
<p id="01">Hello World!</p>
<p id="02">Hello Sweden!</p>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = document.getElementById("02").parentNode.nodeName;
</script>
</body>
</html>