i would like to apply jquery fadein() effect to what php echo displays..
<?php
echo "Name";
?>
what is does simply display the "Name" within echo...but i want that "Name" to come up with an fadein() effect of jquery....
my code is like..
echo"<div id='title'>
<span style='margin-top:1%; margin-left:3%;float:left;color: #3bb598'>campus name </span>
<span style='margin-top:1%; margin-right:3%;float:right;color: #3bb598'>city</span>
<br>
<table><tr>
<th><img src='rj.jpg' id='img' align='top'></th>
<th>".$textid."</th>
</tr></table>
</div>
";
i want the result inside echo should come with a fadein()
effect.