-1

Is there anyway to dispose Java Applet after closing Jquery UI dialog?

Alaa Osta
  • 4,249
  • 6
  • 24
  • 28

1 Answers1

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
});

Hook into dialog close event

Community
  • 1
  • 1
Andreas Louv
  • 46,145
  • 13
  • 104
  • 123