Set an horizontal scrollbar on large tables
npm install largetable
$ npm install largetable
`
Then include largetable files in the HTML:
`html
`
Usage
Trigger largetable() method on table elements:
`javascript
$(".your-text-container table").largetable(options);
`
Options
The following options are available:
`javascript
const options = {
enableMaximize: false // Set it to true to enable table maximization.
};
`
Events
The following events are dispatched by the plugin:
* toggleMaximize
* maximize
* unmaximize
See demo.html` for more details.