hsquareweb
12/26/2012 - 10:52 PM

JS: Modernizr Box Sizing For IE7

JS: Modernizr Box Sizing For IE7

    //MODERNIZR BOX SIZING FIX FOR IE7
    Modernizr.addTest("boxsizing", function() {
        return Modernizr.testAllProps("boxSizing") && (document.documentMode === undefined || document.documentMode > 7);
    });
    $(function(){
        if(!Modernizr.boxsizing){
            $('.col1, .col2').each(function(){
                var fullW = $(this).outerWidth(),
                    actualW = $(this).width(),
                    wDiff = fullW - actualW,
                    newW = actualW - wDiff;
                $(this).css('width',newW);
            });
        }
    });