Skip to content

Instantly share code, notes, and snippets.

@qwersk
Last active July 11, 2017 09:44
Show Gist options
  • Save qwersk/c0130fda99044920381e4419e3e49806 to your computer and use it in GitHub Desktop.
Save qwersk/c0130fda99044920381e4419e3e49806 to your computer and use it in GitHub Desktop.
SET SAME HEIGHT #JS #JAVASCRIPT
function set_same_height(selector){
var max_height = 0;
$(selector).each(function(){
if($(this).height() > max_height){
max_height = $(this).height();
}
});
$(selector).each(function(){
$(this).height(max_height);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment