I have this sniplet of code in jQuery
$element.parent().children().last().hide().show(\'slide\', {direction : \'left\'}, 700, function () { $element.delay(20
I agree with wsbaser. I had the additional instance of needed to pass information to the function, and for simplicity used:
setTimeout(function(){ updateStatus(myData) } , 5000);
The argument needs to be a function and not a function being called. Firefox caught this error, chrome let it go.