Conditional CSS: Targeting IE new versions
Targeting IE new versions such us IE10 & IE11 and Edge browsers with CSS is possible, but not the ol’ fashioned way because Microsoft deprecated the conditional commenting (if IE) we used in older versions. So where’s the black magic? Here: @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { /* IE10+ specific styles go here […]
jquery boxy + google maps = png transparente muestra mal
el problema es que boxy le pone opacity: 1 al contenedor del box.modificar la línea:this.boxy.stop().css({opacity: 1}).show();por:this.boxy.stop().show(); de esa manera se soluciona el problema.