summaryrefslogtreecommitdiff
path: root/html/jquery/test-3.4.1.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/jquery/test-3.4.1.html')
-rw-r--r--html/jquery/test-3.4.1.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/html/jquery/test-3.4.1.html b/html/jquery/test-3.4.1.html
new file mode 100644
index 0000000..dba8fef
--- /dev/null
+++ b/html/jquery/test-3.4.1.html
@@ -0,0 +1,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>