I am currently facing a challenge with creating a non-scrollable iframe element using JavaScript. The function I need to call is within an iframe, and while it works on Firefox and Chrome, I also need it to work on Internet Explorer.
My solution involves changing the scroll bars of the parent iframe because I have jQuery tabs within the application that load in the same iframe. The issue arises when dealing with sub tabs, where only the sub iframe should be scrollable.
In Firefox and Chrome, setting overflow="hidden" and scrolling="no" on the parent iframe has resolved the issue.
Can anyone confirm if it's possible to dynamically control scrollbars on an iframe through JavaScript in Internet Explorer? Thanks, Luisa