Used quite a bit scrollable on 6.x.

Now moved to D7 and scrollable refuses to function. The scrollable library is loaded into the page + the attaching js.
Tried making it work by copying the scrollable demo at the flowplayer site - no good.

Does someone have any hints?

Comments

udig’s picture

Is there anybody out there?

udig’s picture

ok. solved it.
In D7 you must ensure all the $ signs are becoming 'jQuery'. So basically it should look something like this:

drupal_add_js('jQuery(document).ready(function() {         
    jQuery(".scrollable").scrollable({
    });     
  });
  ','inline');