I have a DIV class containing around 10 elements within a container. I am looking to implement a feature where these elements are hidden and shown one by one every 15 seconds using jQuery with a smooth fadeOut() effect. Your assistance in achieving this would be greatly appreciated.
Here is an example of my HTML code structure:
<h1 class="advert"> Sponsored Links </h1>
<div class="advertcont">
<img src="images/advertimage/lap.png" class="advertimg">
<p class="adverttext">Get the Best Shoes at 30GHS.</p>
<a class="advertlink" href="#">www.shoes.com</a>
</div> <!--end of div class "ADVERTCONT"-->
(Repeat above block for each element of class 'advertcont')
</div><!--end of div class "CONTAINER"-->