I'm writing a web app, using an embedded web server that does not permit me to edit http header and so use file caching. My app uses an iframe, but the problem is that every time I change the iframe's src, it reload every libraries I'm using, even if they are loaded in the parent window.
I know I can get JQuery back with :
var jQuery = window.parent.jQuery;
Any suggestions to do the same with every JavaScript files ?