WebAIM - Web Accessibility In Mind

E-mail List Archives

Thread: Suppressing visibility of "invisible" frames?

for

Number of posts in this thread: 3 (In chronological order)

From: Bergel, Marguerite
Date: Sun, Mar 11 2007 8:40PM
Subject: Suppressing visibility of "invisible" frames?
No previous message | Next message →

Hello,

Some of our Web sites make use of frames that are supposed to be
invisible. These frames contain parameters that are relevant only to
systems, but provide nothing useful to human users. Screen readers don't
even pick up on the data within these frames, just the fact that the
frames themselves are there.

Is there a way to suppress visibility of frames that are supposed to be
invisible but aren't to JAWS/Window Eyes? E.g. is there an alt=""
equivalent for frames? I've done some preliminary research, but haven't
come up with anything.

Thanks in advance to anyone who can help,
Marguerite

-----Original Message-----
From: = EMAIL ADDRESS REMOVED =
[mailto: = EMAIL ADDRESS REMOVED = ] On Behalf Of
= EMAIL ADDRESS REMOVED =
Sent: Thursday, March 08, 2007 2:00 PM
To: = EMAIL ADDRESS REMOVED =
Subject: WebAIM-Forum Digest, Vol 24, Issue 8

Send WebAIM-Forum mailing list submissions to
= EMAIL ADDRESS REMOVED =

To subscribe or unsubscribe via the World Wide Web, visit
http://list.webaim.org/mailman/listinfo/webaim-forum
or, via email, send a message with subject or body 'help' to
= EMAIL ADDRESS REMOVED =

You can reach the person managing the list at
= EMAIL ADDRESS REMOVED =

When replying, please edit your Subject line so it is more specific
than "Re: Contents of WebAIM-Forum digest..."

From: ben morrison
Date: Mon, Mar 12 2007 3:30AM
Subject: Re: Suppressing visibility of "invisible" frames?
← Previous message | Next message →

On 3/12/07, Bergel, Marguerite < = EMAIL ADDRESS REMOVED = > wrote:
> Hello,
>
> Some of our Web sites make use of frames that are supposed to be
> invisible. These frames contain parameters that are relevant only to
> systems, but provide nothing useful to human users. Screen readers don't
> even pick up on the data within these frames, just the fact that the
> frames themselves are there.
>
> Is there a way to suppress visibility of frames that are supposed to be
> invisible but aren't to JAWS/Window Eyes? E.g. is there an alt=""
> equivalent for frames? I've done some preliminary research, but haven't
> come up with anything.

You could try by hiding the content with CSS, since its accepted that
screen readers will not read content with display:none attached to it.
So either use display:none on the iframe or a containing div.

http://css-discuss.incutio.com/?page=ScreenreaderVisibility

ben
--
Ben Morrison

From: Jared Smith
Date: Mon, Mar 12 2007 10:10AM
Subject: Re: Suppressing visibility of "invisible" frames?
← Previous message | No next message

On 3/11/07, Bergel, Marguerite < = EMAIL ADDRESS REMOVED = > wrote:
> Is there a way to suppress visibility of frames that are supposed to be
> invisible but aren't to JAWS/Window Eyes? E.g. is there an alt=""
> equivalent for frames? I've done some preliminary research, but haven't
> come up with anything.

There is the title attribute which should describe the content or
function of each frame - http://webaim.org/techniques/frames/ However,
screen readers expect each frame to contain content, so if the title
is left off or is empty (title=""), the screen reader still identifies
the frame by using the frame name, document title, document file name,
or something else. So, there really isn't a good method of hiding the
frame from screen readers.

You should, however, give the frame a title such as title="empty
frame" or something similar so the user doesn't try to navigate
through it.

CSS (display:none or visibility:hidden) might work if applied to the
frame itself.

Another option is to move the frame functionality to an iframe.

Jared Smith
WebAIM.org