Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Swap the order of the scripts</p> <pre><code>&lt;script src="js/jquery.masonry.min.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="js/jquery-1.7.1.js" type="text/javascript"&gt;&lt;/script&gt; </code></pre> <p>jQuery has to be loaded first for masonry to work:</p> <pre><code>&lt;script src="js/jquery-1.7.1.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="js/jquery.masonry.min.js" type="text/javascript"&gt;&lt;/script&gt; </code></pre> <p><strong>Edit:</strong></p> <p>Your site seems to have masonry applied to every container class, which seems to be different then your demo page.</p> <p>Demo page:</p> <pre><code>&lt;div id="container"&gt; &lt;div class="box"&gt; &lt;div id="imageDiv1"&gt; LoadImage...1&lt;br /&gt; &lt;img id="img1" src="pic/jas/pic10.jpg" /&gt; &lt;/div&gt; &lt;div class="box"&gt; &lt;div id="imageDiv2"&gt; LoadImage...2&lt;br /&gt; &lt;img id="Image2" src="pic/jas/pic11.jpg" /&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>Main page:</p> <pre><code> &lt;div id="container"&gt; &lt;div class="box"&gt; &lt;img id="rptCustomers_zzz_0" src="pic/jas/pic1.jpg" /&gt; &lt;/div&gt; &lt;/div&gt; &lt;div id="container"&gt; &lt;div class="box"&gt; &lt;img id="rptCustomers_zzz_1" src="pic/jas/pic2.jpg" /&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>So add another container to contain the <code>.containers</code> or apply masonry to the body itself</p> <pre><code> $(function () { $('body').masonry({ // options itemSelector: '.box', columnWidth: 240, isAnimated: true }); }); </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload