### Basic

Scrollbar will allow you to customize the visible scrollbar on overflow content.

```javascript
$(".target").scrollbar();
```

```markup
<div class="target">
  <p>...</p>
</div>
```

### Horizontal

```javascript
$(".target").scrollbar({
  horizontal: true
});
```