I'm using YUI to expand a div in response to a call from a SWF. It works great in all browsers except for FF3. Not really a big deal since the client will be handling the production implementation, but I am curious as to what might be causing it.
[linky removed]
// edit: Slight correction: Sometimes it works, sometimes it doesn't. :shrug:
The console.log statement would only work with firebug installed and enabled. Firefox has no native console.log statement.
If the little bug isn't black and white, firebug is enabled, even if you can't see the console. The animation will work when the spider is in color, every time.
Right click enable/disable panels on the bug icon and refresh the page after you toggle it to see the difference in behavior.
Remove the console.log statement and it should work just fine for deployment.
console.log statements should never go to production for this reason.
IE would have worked but would have shown an error exclamation point icon. Webkit browsers have console.log native and would be fine. Opera probably would fail like firefox.
Awesome. Thanks for the explanation, too.