Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
|
Please, stop ripping bits of script from there and there, and start by decomposing the flow in the actions that will need to be done.
It looks really like you know what you want, but have not a very precise idea of the path you want to follow to get there.
In that javascript code up there, beside being absolutely ugly and malformated (tabs are your friends!) is totally wrong.
There is a variable _b and a variable b ( VERY meaningful names, by the way), but the _b is never declared nor initialized...
This code seems to have been borrowed from something much larger, that extends DOM function:
Code:
_b.DOM.gE("fb_text").innerHTML=d[1];
Because there is no function named gE in the official JS objects.
And when I see something like this:
Code:
function setTimeOut(){
t=setTimeout("doUserFeedback()",30000)
}
I see a kid playing russian roulette. You are going to shoot yourself, and you won't even know it...
__________________
Only a biker knows why a dog sticks his head out the window.
|