--- id: usage title: Usage --- The Multiple Select plugin displays data in a tabular format, via JavaScript.
## Via JavaScript Include `multiple-select.min.css` in the head tag your html document. ```html ``` Include jQuery library and `multiple-select.min.js` in the head tag or at the very bottom of your document, just before the closing body tag (usually recommended for better performance). ```html ``` Call a multiple select with id select with JavaScript. ```html ``` ```js $('select').multipleSelect() ``` ## Starter template Be sure to have your pages set up with the latest design and development standards. That means using an HTML5 doctype and including a viewport meta tag for proper responsive behaviors. Put it all together and your pages should look like this: ```html Hello, Multiple Select! ```