In my form, I have three fields: name, designation, and description. Currently, all three are displayed at once. However, I want to first display name and designation, then later show the description after some time.
<div class="teamspage4">
<img src="<?php echo base_url();?>admin/images/blogimages/<?php echo $r->image_path;?>" class="img-responsive teamimage"/>
<div class="teamspage5"><?php echo $r->name;?></div>
<div class="teamspage6"><?php echo $r->designation;?></div>
<div class="teamspage76"><?php echo $r->description;?></div>
</div>