I want to load jquery-ui from my local machine
In one of my machine on the network (not connected to internet) I have a node.js server running. The index.html file contains the following
<link rel ="stylesheet" href = "jquery-ui,css"/>
<script type src="jquery-1.8.3.js"></script>
<script type src="jquery-ui.js"></script>
I had kept the jquery-ui,css, jquery-1.8.3.js,jquery-ui.js in the same folder as the index.html
But these files are not being loaded even when I access it from localhost or from any other computer in the network.
My OS is raspberry pi.
I want to run without internet access as internet accessis not possible in my robotic application.
Thanks