Javascript file that flips between items in an HTML list.
To use, include the script on your webpage and surround the list which you would like to flip between with a div with a class of "flipli". Each element in the list must have style="display: none;".
See the below implementation example:
<div class="flipli">
<ul>
<li style="display: none;">A</li>
<li style="display: none;">B</li>
<li style="display: none;">C</li>
<li style="display: none;">D</li>
<li style="display: none;">E</li>
</ul>
</div>