I'm traying to embedd jQuery in .html page with <script> but it doesnt work.
When i load/reload the page the alert() outputs "jQuery not installed".
Hope someone can help me here.
- <html>
- <head>
<script src="jquery.min.js"></script>
- </head>
<body>
<div id="body-wrapper">
<script>
if (typeof jQuery == "undefined") {
alert("jQuery is not installed");
} else {
alert("jQuery is installed");
}
</script>
</div>
</body>
</html>