Suppose I have following frame structure.
<frameset rows="20%,60%, *">
<frame name="theFrame" id="theFrame" src="test1.html" >
<frame name="theSecondFrame" id="theSecondFrame" src="test2.html" >
<frame name="importantFrame" id="importantFrame" src="test3.html" >
</frameset>
Suppose in "theSecondFrame" i have a button and if I click on that button it should show a modal window.
The problem I am facing is, overlay is only limited to "theSecondFrame".
How to spread overlay across all frames so that contents are not accessible?