I have a secured https website running on linux/tomcat using port 8443.
When I request the webpage, the http redirection leads to a login page.
After login the requested webpage is shown. This work fine for all html pages.
But when I include the javascript reference to jquery-1.5.min.js, the loading is stopped:
<link rel="stylesheet" type="text/css" href="jquery.mobile-1.0a3.min.css"/>
<script type="text/javascript" src="jquery-1.5.min.js"></script>
<script type="text/javascript" src="jquery.mobile-1.0a3.min.js"></script>
The failure is based on these threesome links but I can't find what blocks the load.
I tried to reorder the references - in a helpless mood - , but it had no effect.
Any ideas?