I have three frames in single frameset html page. when i saw the view source of the page look like below
<HTML>
<HEAD>
<TITLE>A simple frameset document</TITLE>
</HEAD>
<FRAMESET cols="20%, 80%">
<FRAMESET rows="100, 200">
<FRAME src="contents_of_frame1.html">
<FRAME src="contents_of_frame2.html">
</FRAMESET>
<FRAME src="contents_of_frame3.html">
</FRAMESET>
</HTML>
but my expectation is i want to display the whole frame source in single page using javascript. thanks
Like this bookmarklet?
Note:
<HTML>
tagsTesting with this html
I get this output
Frame 0:
<head><title>Frame1</title><script>alert("frame 1")</script></head><body>Frame1</body>
Frame 1:
<head><title>Frame2</title><script>alert("frame 2")</script></head><body>Frame 2</body>
Frame 2:
<head><title>Frame3</title><script>alert("frame 3")</script></head><body>Frame 3</body>