Skip to content

Instantly share code, notes, and snippets.

@vikt82
Created March 11, 2015 18:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vikt82/e353c242b35cddc64efb to your computer and use it in GitHub Desktop.
Save vikt82/e353c242b35cddc64efb to your computer and use it in GitHub Desktop.
колонки одинаковой высоты
Колонки одинаковой высоты
$(document).ready(function(){
//set the starting bigestHeight variable
var biggestHeight = 0;
//check each of them
$('.equal_height').each(function(){
//if the height of the current element is
//bigger then the current biggestHeight value
if($(this).height() > biggestHeight){
//update the biggestHeight with the
//height of the current elements
biggestHeight = $(this).height();
}
});
//when checking for biggestHeight is done set that
//height to all the elements
$('.equal_height').height(biggestHeight);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment