Hi all.
The problem is the following: I have simple horizontal scrollable with prev and next controls under it - it works ok.
But when I wrap controls with div or span for some styling they stop working - they are shown always and have no effect on scrollable
Not working
The problem is the following: I have simple horizontal scrollable with prev and next controls under it - it works ok.
But when I wrap controls with div or span for some styling they stop working - they are shown always and have no effect on scrollable
$("div.scrollable").scrollable({
size : 1
});
Working
<div class="frame">
<div class="scrollable">
<div class="items">
<div class="item">
<p>text</p>
</div>
<div class="item">
<p>text</p>
</div>
</div>
</div>
<a class="prevPage browse left">left</a>
<a class="nextPage browse right">right</a>
</div>
Not working
<div class="frame">
...
...
...
<span>
<a class="prevPage browse left">left</a>
<a class="nextPage browse right">right</a>
</span>
</div>