Hi,
I`m using a javascript lib that dynamically creates widgets. The only markup you need is a container div you pass to the lib and it builds for example a toolbar inside.
I have a parent window with few popups. I want to keep the child windows free of javascript and contain only markup and to let the parent window control all the logic and respond to events in the child windows. In FF I have no problem. In IE7 all is going well except that I can`t dynamically create elements in the child window when using script from the parent window. I can access the child window`s DOM but can`t create new elements. That prevents me from using the javascript lib. All my pages are served from the same server and same domain so there are no cross domain issues.
Is it a known restriction of IE7?
Is there something I can do to bypass this restriction?
Thanks