Is it possible to fire events picked up by a separate browser window? With JavaScript perhaps.
i.e. if my website opened up another window to display summary product information, would it be possible to notify that window to update when a different product is selected in the main window?
Needs to work in IE, but doesn’t need to work on Chrome or other browsers.
There are a couple of options.
<iframe>(e.g. throughwindow.frames, orwindow.parentfrom the iframe’s POV) or if the target is a window opened by the current window throughwindow.open()orwindow.openerfrom the popup’s POV.window.eventand browsers’ local storage capabilites to simulate passing events between browsers. This is nothing you’d want to use in a production environment, though.German fellows may want to check out Kommunikations-APIs in HTML5 – Welche wann nutzen?