My HTML looks like this:
Code: Select all
<div class="TV" id="channels">
<!--repeated section-->
<div class="block">
<div class="icon">
<a href=""><img src="" /></a>
</div>
<div class="schedule">
<div class="row">
<div class="time">00:00</div>
<div class="show"><a href="">Title 1</a></div>
<div class="cf"></div>
</div>
<div class="row">
<div class="time">00:00</div>
<div class="show"><a href="">Title 2</a></div>
<div class="cf"></div>
</div>
</div>
<div class="cf"></div>
</div>
<!--end repeated section-->
</div>Are there any existing jquery plugins for such functionality? Every plugin I could find would only take ul-li lists and scroll those which was kind of annoying. I could roll my own plugin but that seams like a lot of work for something that I would imagine has already been solved.
Anyone have any ideas for an easy solution?