Does anyone know if there is a way to detect from the browser if iFrames are used by the browser? What I am desiring to do is to have it so that if the iFrames are used, then the scrolling is used for the sub-part of the page, if not then I will just have the whole page scroll, like with no iFrame at all.
It might be better to say that iFrames might not do what I was desiring as I do not want to have actual frames, but just a section of the page with a scrollbar.
you should use CSS divs, the code below will add a 530px div with auto scroll <div class="style1" style="HEIGHT:450px; WIDTH:530px; OVERFLOW:auto">
I agree with softbrix.. just use a DIV layer to scroll, its much more browser compatible and SE friendly. If you need to have another page in the layer, use PHP to include it. Josh