-=- THIS CODE FUNCTIONS. I AM LEFT TO ASSUME THERE WAS A PROBLEM WITH THE CACHE AS NOTHING HAS BEEN ALTERED BETWEEN NON-FUNCTION/FUNCTION. THANK YOU ALL FOR YOUR HELP (especially Niko who got the ball rolling and helped me form a richer understanding of jquery syntax) -=-
I've written this script by hand, and finally decided to update it to jquery in a bid to get used to that, and streamline the code. This is supposed to render a simple menu (which it did before).
- Both .js files are in the same directory as the .html file. This is being tested on my pc, not on a server.
- A previous version of this code worked perfectly just linking to taskMaster.js. At that point my code didn't use "$" tagged calls.
- Firebug is displaying an error of "ReferenceError: $ is not defined" when it tries to call
$(document).ready(function () { - the "net" tab doesn't display either .js files as being loaded; the net tab is completely empty and shows no activity - I believe this is because I'm testing this off my PC; the net panel is empty when I load the functioning code
- I've reinstalled a fresh version of jquery on the offchance there was something wrong, to no avail
Broken code "taskMaster.js":
$(document).ready(function () {
//main menu
function Main()
{
var mainList = ["New List","Show Lists","Delete Lists"];
//var onClick = [New,Lists,Delete];
var mainMenu = new Menu("Main Menu","menuMain",mainList/*,null*/);
mainMenu.contentMenu();
}
$(Main);
//menu class
function Menu(name,divClass,content/*,onclick*/)
{
$("#interface").html(null);
//title
formatDiv("interface",name,divClass,name/*,null*/);
//return
if(name != "Main Menu")
{
formatDiv(name,null,"return","^ Main Menu","Main()");
}
//display options
this.contentMenu = function()
{
for(i=0; i<content.length; i++)
{
formatDiv("interface",content+i,"menuContent",content[i]/*,onclick[i]*/);
}
}
}
//format divs
function formatDiv(target,divId,divClass,content/*,onclick*/)
{
$("#"+target).append("<div id=\'" + divId + "\' class=\'" + divClass + "\'>" + content +"</div>");
/*$("#"+divId).click(function()
{
onclick;
});*/
}
});
I commented out unused lines, but it's showing "$" as undefined
Here is the HTML:
<html>
<head>
<script type="text/javascript" src="jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="taskMaster.js"></script>
<link rel="stylesheet" type="text/css" href="taskMaster.css" />
</head>
<body>
<div id="interface">
</div>
</body>
</html>
As far as I can tell there is nothing wrong with this html - the same format worked perfectly fine before. All that's changed is that I've introduced jquery and changed some commands in taskMaster.js to use "$".
$(Main);instead of a plainMain();. - Also, is there any output (errors) in the javascript console? – Niko Jul 22 '12 at 16:28Main()is called in the <body> tag with onload. Where should I be looking for the javascript console? I'm writing this in SciTE, so the only debugger I have is firebug. When you suggest$(Main), should I be using the whole $(document).ready(); function to encapsulate all my jquery calls? – user1542645 Jul 22 '12 at 16:40$(document).ready(function() { /* your code */ });– Niko Jul 22 '12 at 16:45/*my code*/, do you mean the entire script? Outside of checking DOM readiness, am I calling jquery correctly with things like:$("#"+divId).click(onclick);, or should that look like:$("#"+divId).click(function(){onclick});??? – user1542645 Jul 22 '12 at 16:51file:///URLs. The Chrome console shows them - what does it say? – Dennis Jul 23 '12 at 1:22