I'm using chrome for now... I want to get isotope generally working before dealing with browser specific issues (flexbox problem in ffox, for example).
So I'm calling isotope like this:
<head>
<!-- isotope -->
<script src="../javascript/isotope-master/jquery.isotope.min.js"></script>
<script type="text/javascript">
var $container = $('.content');
$container.isotope({
// options
itemSelector : '.entry',
});
</script>
</head>
then later on i have <div class="content">
with <article class="entry">
inside it.
chrome inspector is telling me that isotope.js is loading without error, yet NOTHING i mean NOTHING happens on the page.
UPDATE: Based on responses, I decided to plunk the basics into codepen. It is including jquery and isotope via cdnjs.com: http://codepen.io/monsto/pen/qlKLg
My questions are...
- What did I miss in the setup? clearly i missed something.
- Whatever I missed, if pointed out, where did I miss that in the docs?
- Is there a test or callback or the like where I can make isotope spit out some kinda ACK to the page? I mean, just because it's loading doesn't necc mean it's firing.
UPDATE It appears that I have a severe deficiency in understanding what exactly needs to be done to install isotope. even when following the examples, it doesn't work (I guess I'm special). Questions #1 and #2 in the list above are most important.