Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 21st, 2012  |  syntax: None  |  size: 0.43 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. $("#sliderFeaturesCtr").scrollable({
  2.   circular: true,
  3.   speed: 200,
  4.   onSeek: function() {
  5.     aclass = this.getConf().activeClass;
  6.     // Find all the buttons, remove active from all of them, then add it back to the currently selected one
  7.     $($('#main_navi li').removeClass(aclass)[this.getIndex()]).addClass(aclass);
  8.   }
  9. }).navigator({
  10.   navi: "#main_navi",
  11.   naviItem: 'li > a',
  12.   activeClass: 'active',
  13.   history: true
  14. });