I prepared a new script using JQuery v1.8.3. Everything ran well locally (and I nearly did backflips when it finally worked), but I am unable to get the same code to execute when I upload it to the GoDaddy website.
The page in question is enter.html. I also have a .php version of the same file, but I don’t think that is the problem. It uses enterstyle.css, jquery.js and init.js. I think this may be an issue beyond my limited javascript experience.
If anyone has suggestions, that would be extremely helpful.
enter.php
<!doctype html>
<html lang="en">
<head>
<meta charset="ascii" />
<title> MeTutel - Enter the website!! </title>
<link rel="stylesheet" href="enterstyle.css" />
</head>
<body>
<canvas id = "enter" width = "1000" height = "1000" style = "display:none">Please update your browser to view HTML5!
</canvas>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/init.js"></script>
<footer id = "the_footer">
Copyright MeTutel 2012
</footer>
</body>
</html>
init.js
var i = 1;
var j = 1;
var tilewidth = (150);
var tileheight = (150);
var tilestartx = (50);
var tilestarty = (50);
var tilespace = (50);
var speed = (5000);
var startx = (200);
var starty = (150);
var canvaswidth = (500);
var canvasheight = (500);
var subjects=["PREALGEBRA","ALGEBRA I","GEOMETRY","ALGEBRA II","TRIGONOMETRY","PRECALCULUS","CALCULUS","TEST PREP"];
function textRect()
{
var z = document.getElementById("enter");
ctl = z.getContext('2d');
ctl.fillStyle = "rgba(255, 255, 255)";
ctl.font = "bold 16px Arial";
for (var k=0; k<4; k++)
{
ctl.fillText(subjects[k], tilestartx+(k+1)*tilewidth+(k+1)*tilespace, 2*tilestarty);
}
for (var l=4; l<9; l++)
{
ctl.fillText(subjects[l], tilestartx+(l-3)*tilewidth+(l-3)*tilespace, 6*tilestarty);
}
};
function miniRect()
{
var z = document.getElementById("enter");
ctl = z.getContext('2d');
ctl.fillStyle="#0066CC";
ctl.globalAlpha = 0.5;
ctl.fillRect(tilestartx+i*tilewidth+i*tilespace,2*tilestarty,tilewidth,tileheight);
i++; // increment the counter
if (i < 5) { // if the counter < 5, call the loop function
miniRect(); // .. again which will trigger another
}
ctl.fillRect(tilestartx+j*tilewidth+j*tilespace,6*tilestarty,tilewidth,tileheight);
j++;
if (j < 4) { // if the counter < 4, call the loop function
miniRect(); // .. again which will trigger another
}
};
textRect();
miniRect();
$(document).ready(function()
{
$('#enter').fadeIn(3000);
});
I have tried to read through some of the existing forums, but many of the suggested changes I don't really understand. I tried running it through the google local site (ajax), but that didn't work either. I apologize if this is very simple or if my code is a mess, but I am still just learning how to make this stuff work.
Thanks
alertand see if it executes. – Arjun Abhynav Dec 27 '12 at 14:55