could someone give me an extra pair of eyes on this and tell me what is wrong?
Problem at line 262 character 9: Implied eval is evil. Pass a function instead of a string.
setTimeout("dojo.addClass(dojo. byId('transition'), 'hide')",1380);
could someone give me an extra pair of eyes on this and tell me what is wrong?
Problem at line 262 character 9: Implied eval is evil. Pass a function instead of a string.
setTimeout("dojo.addClass(dojo. byId('transition'), 'hide')",1380);
JavaScript is not PHP pre-5.3, and you don't pass callbacks as strings. You use an anonymous function like this:
setTimeout(function() { dojo.addClass(dojo.byId('transition'), 'hide'); }, 1380);