summaryrefslogtreecommitdiff
path: root/html/jquery/test-3.4.1.html
blob: dba8fef9f166719cd1cad7423087523a424dc5a8 (plain)
1
2
3
4
5
6
7
8
<html><head><title>jQuery</title><script src="jquery-3.4.1.js"></script></head>
  <body>Loaded jQuery</body>
  <script>
    var h1 = document.createElement("H1");
    h1.textContent = "Hello World!";
    $("body")[0].appendChild(h1);
  </script>
</html>