liabru

Results 233 comments of liabru

Try using code rather than `data-mh`, something like: ``` $('h3, .entry').matchHeight(); ```

This actually an intended as a feature (no really!). Can you try something like `$('div:visible').matchHeight()`?

Ah you're looking for breakpoint support? Take a look at #65 and +1 if that's what you need. I think there's some code there that someone gave that you can...

The solution I gave earlier for that should work, but if you're dynamically modifying visibility then you will need to remove and reapply `matchHeight` afterwards each time.

I'd expect that there might be problems matching heights of table based elements, because they are naturally difficult to control using CSS (by design). I think we'd need a working...

Have you set: ``` $.fn.matchHeight._maintainScroll = true; ``` As for why it happens on page load, I assume you apply matchHeight on load? Firefox is generally pretty bad at maintaining...

Thanks for the update. Looks like the issue is that `maintainScroll` doesn't work on page refresh as Firefox doesn't set the scroll position back to the bottom immediately. A solution...

I think it depends on your setup, the plugin is supposed to revert any changes it applies but there may be some case where it is failing. Can you provide...

This isn't currently supported. Sounds like a good idea though, I'll look into implementing it. In the meantime I guess you'll need to select your elements together in the correct...