Is there anyway to dispose Java Applet after closing Jquery UI dialog?
Asked
Active
Viewed 429 times
1 Answers
0
You can bind the event dialogclose
and then append your applet in the callback:
$("#dialog").bind("dialogclose", function() {
// make applet and append to body
});

Community
- 1
- 1

Andreas Louv
- 46,145
- 13
- 104
- 123
-
Thanks for replying, but I need the javascript code to kill or dispose Java Applet – Alaa Osta Aug 07 '12 at 15:17