Quote:
Originally Posted by WolfShade
Put the setInterval after the function.
function bildbyte(){
code
}
setInterval('bildbyte()',5000);
|
That should read
Code:
setInterval( bildbyte , 5000 );
And to address
I would venture:
-either Logic Ali's reply
-or the $() is expecting a string. ie: $('body')