Looking for a way to have multiple div classes called quote that contains a text and a blockquote fade into the next one every 5 seconds?
Check out the example markup below:
<div id="quoteWrapper">
<div class="quote">
<blockquote>First Quote goes here</blockquote>
<p class="quoteBy">Author</p>
</div>
<div class="quote">
<blockquote>Second Quote goes here</blockquote>
<p class="quoteBy">Author</p>
</div>
<div class="quote">
<blockquote>Third Quote goes here</blockquote>
<p class="quoteBy">Author</p>
</div>
</div>