This may sound ridiculous but there are some situations when we need to share JavaScript Objects across iframe.
When we try to use localStorage for serving the purpose, people say that some browsers might not support it.Even if they support localStorage, Users might've reduced the storage capacity and so forth...
So my question is, Do we have a Solution/Alternative to share JavaScript Objects across iframe
Below example might get us on the same page
parentpage.html
<html>
...
<head><script src="script1.js" type="text/Javascript"></script></head>
<body>
...
<iframe src="childpage.html"></iframe>
</body>
</html>
childpage.html
<html>
...
<head><script src="script2.js" type="text/Javascript"></script></head>
...
</html>
note:
parentpage.html , childpage.html, script1.js, script2.js reside in the same domain and in the same location
Assume that script1.js uses a JavaScript Object that needs to be made publicly available.
Since the browser/UserAgent creates a separate Window Object for each additional iframe used in the page and we can't access the Public JavaScript Object if we attach/Extend it to the Window Object/Document Object, The Last hope of it seems to fade away!
Is there any Solution/Workaround?
top.globalObjectto access it. – Pointy Oct 16 '12 at 13:05iframeis inside the main page, it sounds reasonable to usetopas our interface of communication. But I haven't tried it yet! I'll try it to make sure it works fine – Nokia808Freak Oct 16 '12 at 13:26window.topProperty/Member/Object of a page from domain1 is not accessible to a page from domain2 . That I need to check it out! – Nokia808Freak Oct 17 '12 at 6:56