I am creating a small module for activeCollab consisting of several web pages. I am using PHP and Javascript / jQuery / AJAX. When I enter the main page of the module that I create, everything works fine, but if I try to switch to other modules later, my web application crashes. No information is displayed. The only way to restore it is to update the navigator.
If I check the error console of my navigator, I see that when I exit my custom web page, it says
`Uncaught Error: History.js Adapter has already been loaded...`
The header of my HTML file has the following information:
<head>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.1/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/ui/1.10.1/jquery-ui.js"></script>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
</head>
And this code makes my Javascript functions correct.
What can happen? I googled and I did not find much information about this problem. Every help would be appreciated.