Hi David,

var max = null;
$("#box div").each(function() {
  if ( !max || max.height() < $(this).height() )
    max = $(this);
});

// flash max div
max.fadeOut().fadeIn();


by(e)
Stephan

2009/2/12 David .Wu <chan1...@gmail.com>:
>
> for example, how to find biggest div height under box.
>
> <div id="box">
>        <div>.....</div>
>        <div>.....</div>
>        <div>.....</div>
> </div>

Reply via email to