Reputation: 6116
Can anyone tell me how to set the options, such as scroll, for this plugin. I tried something like this but it didn't work:
$('.sample').uscrollbar({
scroll: horizontal,
});
Anyone have any ideas? Thanks
Upvotes: 0
Views: 64
Reputation: 255005
$('.sample').uscrollbar({
scroll: 'horizontal'
});
,
after the last object's propertyUpvotes: 4