<div class="main">
$('.main').bind("mousewheel DOMMouseScroll", function(event) { //event.preventDefault(); if (event.originalEvent.detail > 0 || event.originalEvent.wheelDelta < 0) { x += 30 ; $('.divs').css('marginLeft',x); }else { x -= 30 ; $('.divs').css('marginLeft',x); } };
x is columns width it is work but it is simple
i want writhe smooth scrolling and set scrollbar for it but i have no idea to do that please guide me for smooth scrolling with scrolling(mousewheel , by scrollbar , by mouse drag and move) and set scrollbar for it tnx