jFrame.load(
function( objEvent ){
..... CODE TO PROCESS .....
// Remove the iFrame from the document.
// Because FireFox has some issues with
// "Infinite thinking", let's put a small
// delay on the frame removal.
setTimeout(
function(){
jFrame.remove();
},
100
);
}
);