
Use PIE.js function inside of modal window
Hello PIE creators,
I use this function for document ready on java page to have css3 effects like border-radius, box-shadow on ie. How do I call this function on a modal window? because if I use it when modal window open is not working

.
$(document).ready(function() {
if (window.PIE) {
$('.rians, .rumos').click(function() {
PIE.attach(this);
alert("alert XXX");
});
}
});
if anyone has had this problem and fix it

.
thank you ...