Hi to all I'm aware of various image crossfade plugins, but i need to crossfade text. Like, I have text A within a , a or a element and I want it to fade away while, fading in, B takes its place.
Any help really appreciated.
Hi to all I'm aware of various image crossfade plugins, but i need to crossfade text. Like, I have text A within a , a or a element and I want it to fade away while, fading in, B takes its place.
Any help really appreciated.
VERY simple example
<div>
<div style="position:absolute;" id="div1">Hello</div>
<div style="position:absolute;" id="div2">World</div>
</div>
<script>
$("#div2").hide( );
$("#div2").fadeIn( 3000 );
$("#div1").fadeOut( 3000 );
</script>