Artem Pastukhov 9 лет назад
Родитель
Сommit
d198d1b433
2 измененных файлов с 16 добавлено и 0 удалено
  1. BIN
      http/jquery.min.js.gz
  2. 16 0
      http/jquerytest.html

BIN
http/jquery.min.js.gz


+ 16 - 0
http/jquerytest.html

@@ -0,0 +1,16 @@
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<script type="text/javascript" src="/jquery.min.js.gz"></script>
+<script type="text/javascript">
+window.onload = function() 
+{
+    if (jQuery) { alert("Jquery loaded");} 
+    else        { alert("Jquery not loaded");}
+};
+
+</script>
+</head>
+<body>
+<h1>Jquery test page</h1>
+</body>
+</html>