Hello guys! I created a website. I tested it on my computer it works when I transfer it to the host it won't work now :( here's the code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 5.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>NeverlastingRO</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" type="text/css" href="ceres.css">
<script src="jquery.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function()
{
$('a#homeAnchor').click(function()
{
$('.fordownload,.forinformation,.fordonate').hide();
$('.forhome').show('slow');
})
$('a#downloadAnchor').click(function()
{
$('.forhome,.forinformation,.fordonate').hide();
$('.fordownload').show('slow');
})
$('a#informationAnchor').click(function()
{
$('.forhome,.fordownload,.fordonate').hide();
$('.forinformation,').show('slow');
})
$('a#donateAnchor').click(function()
{
$('.forhome,.forinformation,.fordownload').hide();
$('.fordonate').show('slow');
})
});
</script>
Then the code at the href's are here
<a href="#" id="homeAnchor"><div id="home"></div></a>
etc.
THANKS ALOT FOR HELPING MEEEE..!!