Hey guys, I'm practising my Javascript programming by developing greasemonkey scripts, theoretically it would improve my javascript coding cause it's raw javascript.
So now, im coding a script for Mobwars facebook. It's a game where you kill people, steal stuffs, create mobs, etc etc.
To understand this better, here's the screenie of the page:
What I'm trying to do is to scan the page, and get the Name of the job and display it to the user.
I want to get the text Mugging, House Burglary, Stoplight Car Theft etc etc
The text have a color property which is set to silver.
Look at my code, I tried it in Firebug but it doesn't even alerted..
var jobs = {};
jobs.scan = function() {
var tagHolder = {};
var availJobs = {};
var jobContents = dom.get("app8743457343_content");
var rData = dom.getElementsByClass(rowData, jobContents, "tr");
for(var i = 0; i < rData.length; i++) {
var rChildren = rData[i].childNodes;
for(var j = 0; j < rChildren.length; j++) {
if(rChildren[j].tagName === "B") {
tagHolder.push(rChildren[j]);
}
}
for(var k = 0; k < tagHolder.length; k++) {
if (tagHolder[k].color == "silver") {
availJobs.push(tagHolder[k].textContent);
}
}
}
return alert(availJobs[0]);
}
jobs.scan();
Just tell me what's wrong with the code.. I'll just tweak this code and maybe if i managed to fix it, ill report it here again. Thanks