Disabling frames in IE6

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I am creating a webiste as part of a course assessment. I have created a
page that contains frames and a no frames option that hyperlinks to a page
without frames.

How can I test that the no frames option works - this is part of the course
assessment to give evidence of this testing?

I have tried searching in Tools, Internet Options to find an option for
disabling frames but I cannot find one - please can anyone help me with this?
 
You need to test it on different browsers. I am not sure but I think that
earlier versions of Netscape do not support frames. I know for sure that
FireFox has an option to turn embedded frames off.
Most developers test their sites for compatibility with other browsers
though this seems to me to be a waste of time since IE has around 80%
acceptance.
My general practice is to redirect non IE browsers from server side code
rather that modifying each and every page to accommodate all browsers.
 
Great thanks for your reply, I do not have an option with this for placing my
code server side as it is an assessment.

Where is the option in Firefox to turn off embedded frames?
 
In firefox select the Tools\Edit User Files menu and edit the
userContent.css file with
iframe {-moz-binding: none: }
 
Back
Top