I've made a page to add data into a table (MySQL). Everything works fine on my computer and on the server when I'm connected to the local network. But when I'm trying to access the application from home, it seems that the path to CSS and JS files is not right! Here is how I use the link from office: http://server.domain.eu/moni/call_ans.html
And here is what link I use from home: https://server.domain.eu/moni/call_ans.html
Here is a part of my HTML code and how I include the JS and CSS file. I also use a PHP file, which is also linked wrong!
<head>
<script src="jquery/jquery-ui-timepicker-addon.js"></script>
<script src="jquery/jquery-ui-sliderAccess.js"></script>
<head>
<link rel="stylesheet" href="jquery/jquery-ui-timepicker-addon.css">
<link rel="stylesheet" href="jquery/jquery-ui-timepicker-addon.min.css">
</head>
<script>
....
$(document).ready(function() {
$("#techForm").submit(function(e) {
var url = "call_ans.php";
});
});
....
</script>
</head>