Skip to content Skip to sidebar Skip to footer

Zurb Foundation Equalizer Resize After Ajax

I ran into a problem with Foundation equalizer, I am trying to dynamically readjust div heights with equalizer after I change content with ajax. I searched Foundation documentation

Solution 1:

For Foundation 6 :

Foundation.reInit('equalizer');

More info in the doc : http://foundation.zurb.com/sites/docs/javascript.html#adding-plugins-after-page-load

Solution 2:

This is what we use on our site to do what you are talking about:

$(document).foundation('equalizer','reflow');

Post a Comment for "Zurb Foundation Equalizer Resize After Ajax"