antonydoyle
3/7/2013 - 10:54 PM

IE7 boxsizing fix for Foundation3. Use Modernizr to detect.

IE7 boxsizing fix for Foundation3. Use Modernizr to detect.

    <script>
if(!($('html').hasClass('boxsizing'))){
    $('*').each(function(){
        if($(this).css('display')=='block'){
            var f, a, n;
            f = $(this).outerWidth();
            a = $(this).width();
            n = a-(f-a);
            $(this).css('width', n);
        }
    });
}
    </script>