Two questions, everybody:
1) How do I toggle Isotope on and off?
2) How do I toggle layout modes? That is, how do I go from this:
$('.content').isotope({ itemSelector : '.hentry',
layoutMode : 'cellsByRow',
cellsByRow : { columnWidth : 240, rowHeight : 360 } });
to this:
$('.content').isotope({ itemSelector : '.hentry',
layoutMode : 'masonry'});
with a simple click switch? Any ideas?
Thanks!
Two questions, everybody:
1) How do I toggle Isotope on and off?
2) How do I toggle layout modes? That is, how do I go from this:
$('.content').isotope({ itemSelector : '.hentry',
layoutMode : 'cellsByRow',
cellsByRow : { columnWidth : 240, rowHeight : 360 } });
to this:
$('.content').isotope({ itemSelector : '.hentry',
layoutMode : 'masonry'});
with a simple click switch? Any ideas?
Thanks!
Share Improve this question edited May 16, 2011 at 20:09 Tomer Lichtash asked May 16, 2011 at 18:28 Tomer LichtashTomer Lichtash 9,26216 gold badges57 silver badges73 bronze badges1 Answer
Reset to default 12See http://jsfiddle/desandro/dbgFa/
1) To disable Isotope after initializing it, use the destroy method
$('.content').isotope('destroy')
Then turn it back on by triggering Isotope again
$('.content').isotope( /* options */ )
2) You would change layout modes just like your example code, by setting the layoutMode in the options. This will also trigger a re-layout and the layout will change.