Hello everybody,

I've have one "items" element with multiple div under it :


<div class="items">
            <div>
              <img class="item" ... />
              <p>blah blah </p>
              ....
            </div>
            <div>
              <img class="item" ... />
              <p>blah blah </p>
              ....
            </div>
            <!-- more div -->
            ...
</div>

I'd like to know if it is possible to use only some of the nested elements under the div as scrollable items (img for example) ?

I thought i could use the item parameter of scrollable :

$(".scrollable").scrollable({item:"img.item"}).navigator();

But it doesn't seem to work. You can see a modified navigator example here :http://jbdenis.net/jquery_navigator.html

Thank you !