I've looked at all the other questions similar or identical to mine but I still can't find what I'm looking for. I'm still new to jquery but all I want is my three divs to be on loop and fade in and out when they change. What I'm seeing is people using fast speeds, the first div also fades in and then the rest will follow but I want the first div to just be present when the page loads and then switch after some time. Here's my html
<div id="Reviews">
<div class="Review1">
<p>Customer Review 1</p>
<span class="CustomerName">- Bob</span>
</div>
<div class="Review2">
<p>Customer Review 2</p>
<span class="CustomerName">- Mary</span>
</div>
<div class="Review3">
<p>Customer Review 3</p>
<span class="CustomerName">- Jess</span>
</div>
</div>
Now I have separate classes for them but I'd rather set up the query to fade in and out by calling using "#Reviews div" something like that, but changing the class names of the divs is fine if needed to make my fade in/out to work. I'd prefer to just add reviews if needed and it'll just adjust by the class name or just by being a div. I'm also seeing coding that'll fade my divs but the following div will show up below the current one and then the current one will disappear and the following moves up, where as I want it to stay vertically aligned top just fade in and out while on a loop so it always goes back to the first and then goes again. I thought this would be easier to do but apparently not. I've tried using coding from what I saw from other questions but I just can't find what I'm looking for specifically.
If you want to fadein and fadeout all the divs in a loop .you can do as the following
check this snippet
Hope it helps