In my web application, a series of jsp pages are navigated. These jsp pages appear on the Right Hand side (frame) of the screen. On the left frame, I have an applet.
This applet is common to all jsps. From all of the jsps, I want to invoke a method on the applet. The javascript code is inside of each jsp.
Is there a way to do this ? Any approaches, suggestion, Code snippets most welcome.
The applet basically displays an image. Based on the user interaction in the jsp pages, the image needs to change/rotate and so on. But the applet is common to all and should not be loaded on each of the jsps load. Thats why I am looking for a way for all jsps to communicate to the single applet (via javascripts of course).