Equivocadamente imperfecto

Solucionando error de IE6 con div hidden

April 25, 2009 · Leave a Comment

Esto me sirvio para ocultar el espacio en blanco que deja un div hidden en IE6

// jQuery

var cd = $(“#DivID”);
cd.css(“visibility”,”hidden”);
cd.css(“display”,”none”);

//////////////////////////

/* CSS */

#myDivID{

visibility: hidden;

display: none;

}

Categories: Beyond

0 responses so far ↓

  • There are no comments yet...Kick things off by filling out the form below.

Leave a Comment