I have a webpage which dynamically creates markup within itself. On the click of a certain button I want a client-side event to 'copy' this markup and place it in the <body> of a blank page which it will open in a new browser window. Is there any way to do this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
When opening a new window, the function returns a "handle" to this window. You can then manipulate the new window with javascript (so long as it points to a URL on the same domain).
The |
|||||||||||
|
|
As you want it on the client-side using JavaScript (from your tags), you can use the
Note that, in this example, the target inside |
|||||
|
<table>. I want to to lift this image and table and open in a separate browser window. – El Ronnoco Dec 13 '10 at 10:38