npm install dropbear``bash
npm install dropbear --save
`
Simply pass an options object to Dropbear's construct method. The $selection property can be either a jQuery object
or a regular DOM element.
`javascript
var options = {
$selection: $('#some-selection'),
breakpoint: 768,
toggleText: 'Menu',
toggleElement: 'span'
};
DropBear.construct(options);
``