I am having issues implementing a fadeIn function for one of my div tags that has a display:none property attached to it.
What would be the best way to go about having the div tag appear and then fade in? I am pretty adamant about keeping the display:none property.
This is what I have tried:
<div class="graphs_line_based clearfix" style="display:none" id = "test_id">
And then in my .script file:
document.getElementById('test_id').fadeIn(1000);
It simply does not play the animation. Any help/suggestions would be appreciated!