I'm using the following line of code to fade in the div content in the tab using prototype and scriptaculous:
$('lesson-'+tab).fade({
from:0,
to:1
});
This div when faded in has the style of style="" assgined to it - and that causes the div not to be shown.
Any suggestions on how to avoid this happening?
Here's what I need to get for-example for tab1:
<div id="lesson-tab1" style="display: block;">
The test page can be seen from this link if needed. Thanks in advance.