Response title
This is preview!
<scrip type="text/javascript"> | |
jQuery(document).ready(function( $ ) { //use this line EXACTLY! | |
alert("XX"); | |
$.fn.delay = function(time, callback){ | |
// Empty function: | |
jQuery.fx.step.delay = function(){}; | |
// Return meaningless animation, (will be added to queue) | |
return this.animate({delay:1}, time, callback); | |
} | |
var maxHeight=0; | |
$('.imageblock').each(function() { | |
maxHeight = Math.max(maxHeight, $(this).height()); | |
}).height(maxHeight); | |
}); | |
</script> |
© 2013 jQuery Foundation
Sponsored by and others.