Super Simple jQuery Equal Height Columns


/ Published in: jQuery
Save to your folder(s)

This is just a quick and simple lazy way to do this, didn't feel like using a plug-in for something that is only used on one page...


Copy this code and paste it in your HTML
  1. var columnHeight = Math.max($('.columns-wrapper').height());
  2. $('.columns').height(columnHeight);

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.