I want to pass data from parent window to child window when using window.open (popup new window)
Originally, I wrote code as below
Parent Window Side
var orignalTextPopup = window.open("popup/orignalText", '_blank', 'width=900,height=700,scrollbars=yes');
orignalTextPopup.data = data;
Child Window Side
fn_showOrginalText(window.data);
It works fine with chrome, But in Internet Explorer environment it doesn't work. How can I pass the value to child window ?? Please help me :'(