set height of all elements
on resize I want to do something like that :
- $(document).ready(function() {
- var newWidth = $('.span3').width();
- $('.box').height(newWidth);
- });
I get the width of any (or the first) .span3 in my page and all the .box of the document must have height:.span3-height
thanks for helping