[jQuery] .css ('display') in IE6
Another problem found in IE6.
I tried to display and hide two rows in a table using method .css:
$("#waktu_mulai").css("display", "table-row");
$("#waktu_selesai").css("display", "table-row");
in Firefox, it run well, but in IE6, the rows didn't show.
Before I use jQuery, I'm using this code:
var waktuMulai = document.getElementById("waktu_mulai");
var waktuSelesai = document.getElementById("waktu_selesai");
waktuMulai.style.display = "table-row";
waktuSelesai.style.display = "table-row";
same problem, it work in FF, not work in IE6. Anyone could help me??
--
Donny Kurnia
http://hantulab.blogspot.com
http://hantulab.multiply.com
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/