Within an iframe, I have a drop-down menu designed for members.
The dimensions of the iframe are dependent on variables and should expand to height 100% and width 100% when a user hovers over a button. This allows any necessary information to be easily visible.
The iframe should transition from a height of 50px and width of 300px to full screen dimensions (100%, 100%).
This setup ensures that the links on the parent page remain accessible even when the menu is not in dropdown mode.
For example:
<iframe id="parent".....><ul><li class="drop_item">button1</li><li class="drop_item">button2</div></ul></iframe>
The "parent" element should expand upon hovering over a "drop_item".
I hope this explanation clarifies things.