We are currently working on our servers, so there may be outages on the domains.Zurzeit wird an unseren Servern gearbeitet, deshalb kann es zu Ausfällen bei den Domains kommen.
NetworkError: 404 Not Found - http://jazz-it.net/si/predstavitev/js/jquery.easing.1.3.js"
In the file http://jazz-it.net/templates/jazzintro/js/script.js all of these other scripts are loaded (or tried to load).This is done using a relative path, soseen from the page where the browser is.This does not work, and is not needed too because they are loaded in the html in the correct way.So either fix all include() lines in the script.js and remove them from the template html, or remove them from script.js (might give some side effects!)
include('js/jquery.easing.1.3.js');
include('http://jazz-it.net/templates/jazzintro/js/jquery.easing.1.3.js');
Replace all lines like Code: [Select]include('js/jquery.easing.1.3.js');intoCode: [Select]include('http://jazz-it.net/templates/jazzintro/js/jquery.easing.1.3.js');Only the includes that start with "js/" (I have seen at least one other)Next, you should remove all scripts in the index.php that are now loaded this way.
// include('js/jquery.easing.1.3.js');
The other solution is to disable all include('js/....) lines by putting 2 slashes in front of the line.Code: [Select]// include('js/jquery.easing.1.3.js');The includes are not working at this time, so that should make no difference in the website.It should stop the console errors.