Paulbart
06-19-2012, 09:59 PM
Hey everyone, I believe I have the right code, and it works fine on localhost, but when I upload it to FTP, it doesn't work live.
the website is : www.theurbanape.com
Here is the code: (ps. it is linked to jquery-1.4.1.min.js)
<strong></strong><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<html>
<head>
<link rel="stylesheet" href="style.css" type="text/css" />
<title>Urban Ape</title>
<script type="text/javascript" src="jquery-1.4.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("body").css("display", "none");
$("body").fadeIn(3000);
$("a.transition").click(function(event){
event.preventDefault();
linkLocation = this.href;
$("body").fadeOut(1000, redirectPage);
});
function redirectPage() {
window.location = linkLocation;
}
});
</script>
</head>
<body>
<div class="center"><a href="intropage.html" class="transition"><img src="Images/apecity.jpg" alt="test image" title="Enter The Jungle" height="400" width="400" /></a></div>
</body>
</html>
the website is : www.theurbanape.com
Here is the code: (ps. it is linked to jquery-1.4.1.min.js)
<strong></strong><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<html>
<head>
<link rel="stylesheet" href="style.css" type="text/css" />
<title>Urban Ape</title>
<script type="text/javascript" src="jquery-1.4.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("body").css("display", "none");
$("body").fadeIn(3000);
$("a.transition").click(function(event){
event.preventDefault();
linkLocation = this.href;
$("body").fadeOut(1000, redirectPage);
});
function redirectPage() {
window.location = linkLocation;
}
});
</script>
</head>
<body>
<div class="center"><a href="intropage.html" class="transition"><img src="Images/apecity.jpg" alt="test image" title="Enter The Jungle" height="400" width="400" /></a></div>
</body>
</html>