
Re: PIE styles dont render until browser is resized by a hai
I've had that problem as well, but only when there are nested divs on which pie is applied.
And when refreshing, it didn't work all of the time in Internet Explorer.
But when you remove the behavior of an element and add the pie back on, it does work. And if you want to get all of the IDs in the div page for example you can do:
var IDs = [];
$("#page").find("div").each(function(){ IDs.push(this.id); });
$.each(IDs, function(index, value) {
$('#' + value).css('behavior','none');
$('#' + value).css('behavior','url("pie/PIE.php")');
});
Hopefully this works
Grtz,
David