I have an
(ordered list) and in FF, Safari, Chrome it is rendered correctly. However in IE9 it is showing all zeros. It is not a spacing/padding is
I came across this issue myself recently and came up with a different solution than including an empty div. Could definitely use more testing in different scenarios but this worked for me, even when the list was hidden and shown again.
var ieTimeout;
var selectorWrapperSet = $(selector);
selectorWrapperSet.css("display","none");
ieTimeout = setTimeout(function() {
selectorWrapperSet.css("display","block");
}, 1);