# Isotope _Filter & sort magical layouts_ See [isotopejs.com](http://isotopejs.com) for complete docs and demos. ## Install ### Download + [isotope.pkgd.js](https://github.com/metafizzy/isotope/raw/master/dist/isotope.pkgd.js) un-minified, or + [isotope.pkgd.min.js](https://github.com/metafizzy/isotope/raw/master/dist/isotope.pkgd.min.js) minified ### CDN Link directly to [Isotope files on cdnjs](https://cdnjs.com/libraries/jquery.isotope). ``` html ``` ### Package managers Bower: `bower install isotope --save` npm: `npm install isotope-layout --save` ## License ### Commerical license If you want to use Isotope to develop commercial sites, themes, projects, and applications, the Commercial license is the appropriate license. With this option, your source code is kept proprietary. Purchase a Isotope Commercial License at [isotope.metafizzy.co](http://isotope.metafizzy.co/#commerical-license) ### Open source license If you are creating an open source application under a license compatible with the [GNU GPL license v3](https://www.gnu.org/licenses/gpl-3.0.html), you may use Isotope under the terms of the GPLv3. [Read more about Isotope's license](http://isotope.metafizzy.co/license.html). ## Initialize ### In JavaScript ``` js // jQuery $('#container').isotope({ // options... itemSelector: '.item', masonry: { columnWidth: 200 } }); ``` ``` js // vanilla JS var container = document.querySelector('#container'); var iso = new Isotope( container, { // options... itemSelector: '.item', masonry: { columnWidth: 200 } }); ``` ### In HTML Add a class of `js-isotope` to your element. Options can be set in JSON in `data-isotope-options`. ``` html