ok, ive uploaded all the files necessary to run the website i built which works perfectly when hosted on my own machine using xamplite with apache, however..when i try to view my page on the 000webhost server it loads etc but my shadowbox.js dosnt seem to load the html i am using is as follows:-
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<title>app</title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="shadowbox.js"></script>
<script type="text/javascript" src="swfobject_source.js"></script>
<script type="text/javascript">
Shadowbox.loadSkin('classic', 'src/skin');
Shadowbox.loadLanguage('en', 'src/lang');
Shadowbox.loadPlayer(['flv', 'html', 'iframe', 'img', 'qt', 'swf', 'wmp'], 'src/player');
var openShadowbox = function(content, player, title){
Shadowbox.open({
content: content,
player: player,
title: title
});
};
window.onload = Shadowbox.init;
</script>
<style type="text/css">
/* hide from ie on mac \*/
html {
height: 100%;
overflow: hidden;
}
#flashcontent {
height: 100%;
}
/* end hide */
body {
height: 100%;
margin: 0;
padding: 0;
background-color: #33CC33;
}
</style>
</head>
<body>
<div>
<a href="fs21.jpg" rel="shadowbox">My Image</a>
</div>
<div id="flashcontent">
<strong>You need to upgrade your Flash Player</strong>
This is replaced by the Flash content.
Place your alternate content here and users without the Flash plugin or with
Javascript turned off will see this. Content here allows you to leave out <code>noscript</code>
tags. Include a link to <a href="fullpage.html?detectflash=false">bypass the detection</a> if you wish.
</div>
<script type="text/javascript">
// <![CDATA[
var so = new SWFObject("bb.swf", "sotester", "100%", "100%", "9.0.0", "#33CC33");
so.addVariable("flashVarText", "this is passed in via FlashVars for example only");
so.write("flashcontent");
// ]]>
</script>
</body>
</html>
any help would be greatly appreciated