Hi,
I am making a single page web application that uses tabs to represent pages. For example one tab may display a graph and another tab display something else. When you click on a tab, the previously shown tab is hidden (the div) and the clicked tab's div is shown. When the graph's tab is hidden en then made visible again, the graph is blank and then redrawn. Is it possible to stop this behaviour?
I use the prototype library and the flash object is embedded in a div that is hidden with $(div).hide(); and then made visible with $(div).show();.