Hello
I have a rendered jsp that does what I want, I need to show it on the second display, how would I copy the entire dom of the current window and create a completely new window? I will later want from the master to further edit that child window and write to it. Any insight greatly appreciated.
Hello I have a rendered jsp that does what I want, I need to
Share
That would be tricky. You can certainly open a new window and communicate with it but you can’t pass DOM objects. You would basically need to convert the generated DOM to a string, pass it across to the new window and then parse it as though it was a document.
Like this: Copy Current Webpage Into a New Window