nodemcu-httpserver/http/jquerytest.html
2015-04-02 15:45:02 +03:00

16 lines
339 B
HTML

<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>