
Re: CSS3Pie and Jquery dialog transition
Try telling PIE about the dialog if it doesn't already know about it:
Code:
if (window.PIE) {
PIE.attach(element);
}
Otherwise, maybe try telling PIE that the element has moved, which tells PIE to do its thing again:
Code:
if (window.PIE) {
element.fireEvent("onmove");
}