Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
2  
What do you mean by 'not working'? Open the page in Chrome, open Devtools and check if there are any JS errors. – Osiris Dec 27 '12 at 14:53
Check your browser if there are javascript errors.. – Svetlio Dec 27 '12 at 14:54
Well, it is not about PHP running the jQuery script. Rather the browser. Try executing some simple jQuery/JavaScript scripts like alert and see if it executes. – Arjun Abhynav Dec 27 '12 at 14:55
Open developer tools (f12 in all browsers, you may need to install firebug for FF) and check network tab. See if all your scripts are loaded (once it works correct locally, you may have some issue with paths on server). – FAngel Dec 27 '12 at 14:56
1  
Created a fiddle jsfiddle.net/2qLHM Rectangles fade in - is it how it is supposed to work? – Max Yakimets Dec 27 '12 at 15:01
show 1 more comment

closed as too localized by Sparky, Michael Berkowski, François Wahl, Björn Kaiser, Chacha102 Dec 28 '12 at 19:08

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

I got the updates to work. I think the major problem was that my syntax was off on the js/init.js line. I also linked the page to the JQuery page via google instead of a local file. Oh, I changed the page to an html file.

I guess this is what happens when you are learning to code...sometimes it takes you an entire day to figure out that you had a typo, but I'll know to look there next time.

Thank you for your input guys and I hope I didn't waste anyone's time.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.