Fix ie 8 select

If you are reading at this post, it’s because you already know the problem,…. so the javascript (jquery) solution to avoid options has the same widht as the select is:

jQuery(document).ready(function($) {
    
    $("xXxxXxXx select").hover(
        function(){
        $(this)
        .data("origWidth", $(this).css("width"))
        .css("width", "auto");        
        },function(){
        $(this).css("width", $(this).data("origWidth"));
    });

});

Jquery 1.7 slideToogle, slideUp, slideDown issue in IE8

Well after reading like 10 different websites, it seems like the problem was because of negative padding and margins, but i did not used negative values at all… so the WTF!!, anyway, you can grab the solution right here:

Chage:

_default:function(a){a.elem.style&&a.elem.style[a.prop]

by:

_default:function(a){if(isNaN(a.now)){return;}a.elem.style&&a.elem.style[a.prop]