So, got a little problem here :)
I m using jQuery TOOLS to make a neat, little scrollable gallery. Worked perfectly fine until i moved the correlating navigator one node too far away from the scrollable div.
Aaand.. now they don t want to talk to each other anymore.
Here we go with the code:
<section>
<div class="scrollable">
<div class="gallery_items">
<div class="gallery"><!-- Stuff goes here --></div>
<div class="gallery"><!-- the rest of it here --></div>
</div>
</div>
</section>
<footer>
<div class="navigation">
<a href="#1">1</a>
<a href="#2">2</a>
</div>
</footer>
<script type="text/javascript">
$( .scrollable ).scrollable({
circular: false, keyboard: false
}).navigator({
navi: .navigation , naviItem: a
});
</script>
Any idea how to connect the footer navigation so the scrollable, pleeeease? :)
Sincerely, Pakuna from germany!