Forum Moderators: open
<script type="text/javascript">
jQuery(document).ready(function($) {
$.fn.equalHeights = function() {
this.each(function(){
var sizeTo = 0;
$(this).find('.block').each(function(){
$(this).height('auto')
if ($(this).height() > sizeTo) {
sizeTo = $(this).height();
}
});
$(this).find('.block').height(sizeTo);
});
return this;
};
$(function(){
$('ul.products').equalHeights()
$(window).bind( "resize", function(e) {
$('ul.products').equalHeights()
});
});
});
</script> $(document).ready(function() {
var img = $('<img>').attr('src', '/images/an_image.png');
$('body:first').append(img);
console.log(img.height());
});