🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

ScrollTabs is a jQuery plugin to create customizable, dynamic, smart and responsive tabs for wide tab-interface applications that automatic adjust to detect whether scrolling is needed.

tabs

Documentation

jQuery-ScrollTabs

A JQuery highly configurable plugin to handle scrolling tabs horizontally when not enough space is available. This is great for navigation in context of responsive layouts. Additionally, there's nearly infinite ways to configure the appearance using your own CSS or the available Options and API calls for changing the contents on-the-fly!

Demo

View a live demo of jQuery-ScrollTabs in action!

http://joshreed.github.io/jQuery-ScrollTabs/

Install

There are two installation options:

Usage

At it's most basic:

$('#tabSet').scrollTabs(); 

And to show the options available:

 $('#tabSet').scrollTabs({     scroll_distance: 350,        // Pixel width for how far to scroll with each single-click     scroll_duration: 350,        // Milliseconds for how long to animate the scroll     left_arrow_size: 26,         // Width of the left arrow (if you choose to customize this)     right_arrow_size: 26,        // Width of the right arrow (if you choose to customize this)     click_callback: function(e){        // This shows the default callback, which will redirect the page based       // on the 'rel' attribute.       var val = $(this).attr('rel');       if(val){         window.location.href = val;       }     }   }); 

Documentation

For more information or detailed usage instructions, please refer to the link below.

http://joshreed.github.io/jQuery-ScrollTabs/documentation.html

Also, the Examples provide a guide of how to structure your HTML, and some key JavaScript API calls, should you be interested in dynamically changing the tab set's contents.

http://joshreed.github.io/jQuery-ScrollTabs/index.html#examples


You May Also Like