Is there anyway to dispose Java Applet after closing Jquery UI dialog?
Asked
Active
Viewed 418 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
- 44,338
- 13
- 91
- 116
-
Thanks for replying, but I need the javascript code to kill or dispose Java Applet – Alaa Osta Aug 07 '12 at 15:17