Refining my question little bit this time. 😀
I have this function, but instead of opening it in the parent window, I want it to open in a new IE window… and oh “_blank” is not working for me .
function saved() {
str = parent.a.document.abc.text.value;
SER= top.document.open();
SER.write(str);
SER.execCommand();
SER.close();
}
Thanks in advance
-Miss Subanki (LOL I am asking too many questions these days)
This should work:
We’re opening a new window (with
win = window.open()), and writing to it. Note that you can pass the normal parameters to it.