I have tried everything to get the following code working but I cant seem to load jquery properly. I have tried installing from a folder with in the project and from using a URL.
Here is my snippet of code which includes the different methods I had being using in order to load the JQuery Library.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta name="" content="">
<title>DynamicPulldown</title>
<!-- <script id="javascript" src="http://localhost:81/js/jquery-
3.2.1.min.js"></script>-->
<!-- <script id="javascript" src="http://localhost:81/js/jquery-
3.2.1.min.js"></script>-->
<script src="/js/jquery-3.2.1.min.js"></script>
<script>
$(document).ready(function(){
$("p").click(function(){
$(this).hide();
});
</script>
</head>
<body>
<div>
<p>If you click on me, I will disappear.</p>
<p>Click me away!</p>
<p>Click me too!</p>
</div>
</body>
</html>
I have placed my index.html file in the following folder C:\xampp\htdocs and the jquery-3.2.1.min.js file in the following folder C:\xampp\htdocs\js
My url to view the page in my browser is http://localhost:81/index.html.
Thank you
Dave