[WSG] Accessible Modal/Lightbox Code

2011-05-17 Thread Spellacy, Michael
Hi List!

A colleague of mine is looking for accessible modal window code.
Anything good out there? Thanks in advance!

Regards,
Spell


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



[WSG] Out of Office AutoReply: WSG Digest

2011-05-17 Thread Edo Kamal
I am out of office on Tuesday, 17 May 2011. I will have limited access to my 
emails.

For MSI/MSIS web enquiries please contact:
Papinder Hamid (x77756)
p:  +61 2 8237 7756
e: papinder.ha...@macquarie.com

For MIM web enquiries please contact:
Sophia Rahmani (x72060)
p:  +61 2 8237 2060
e: sophia.rahm...@macquarie.com

Notice: The information contained in this email is confidential. If you are not 
the intended recipient, you may not disclose or use the information in this 
email in any way. If you received it in error, please tell us immediately by 
return email and delete the document. Macquarie does not guarantee the 
integrity of any emails or attached files and is not responsible for any 
changes made to them by any other person. Macquarie does not warrant or 
guarantee that information contained in any email or attached file is free of 
viruses, worms, trojan horses or anything else having contaminating or 
destructive properties and has not been intercepted and interfered with during 
transmission.  It is your sole responsibility to protect yourself against such 
risk and, by opening any email or attached file you agree to assume all risks 
associated with electronic data transmission. Electronic communications carried 
within the Macquarie system may be monitored. Macquarie Funds Group services 
are provided by Macquarie Bank Limited ABN 46 008 583 542 or one of its related 
entities.



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***


Re: [WSG] Accessible Modal/Lightbox Code

2011-05-17 Thread Carl Heaton
Hi back,

http://www.net-kit.com/10-css3-lightbox-alternatives/

http://www.net-kit.com/10-css3-lightbox-alternatives/Seems a good list.

You are mainly looking for CSS3 type things as full accessibility means no
Javascript.

Good luck!

C

On 17 May 2011 21:31, Spellacy, Michael michael.spell...@tmp.com wrote:

 Hi List!

 A colleague of mine is looking for accessible modal window code.
 Anything good out there? Thanks in advance!

 Regards,
 Spell


 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: memberh...@webstandardsgroup.org
 ***




-- 
Carl Heaton
Managing Director and Instructor
www.WebCoursesBangkok.com



Training Centre
253 Building 18th Floor,
Sukhumvit 21
Asoke
Bangkok
10110


Mobile: 0867824118
Skype: carl68
Twitter: @webcoursesbkk


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***

Re: [WSG] Accessible Modal/Lightbox Code

2011-05-17 Thread Patrick H. Lauke

On 17/05/2011 17:05, Carl Heaton wrote:

You are mainly looking for CSS3 type things as full accessibility means
no Javascript.


Not really, it just means that there must be an alternative if JS isn't 
available, which usually means loading the image itself at a minimum.


--
Patrick H. Lauke
__
re·dux (adj.): brought back; returned. used postpositively
[latin : re-, re- + dux, leader; see duke.]

www.splintered.co.uk | www.photographia.co.uk
http://redux.deviantart.com | http://flickr.com/photos/redux/
__
twitter: @patrick_h_lauke | skype: patrick_h_lauke
__


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



Re: [WSG] Accessible Modal/Lightbox Code

2011-05-17 Thread David Dorward
 
On 17 May 2011, at 17:05, Carl Heaton wrote:

 You are mainly looking for CSS3 type things as full accessibility means no 
 Javascript.

No, it doesn't. 

Start with something that provides access to all the content with plain HTML. 
Apply JavaScript over the top of it to provide an enhanced experience. Make 
sure that the JS doesn't introduce problems for users of screen readers, screen 
magnifiers, non-pointer based input devices, etc and you are accessible.

You have to check the same things with CSS based solutions too. I've seen 
plenty of :hover based interfaces that have no keyboard fallback.

Take the second item on the list on the page you pointed to, for instance. When 
I focus the Clickbox Gallery link, a photo unexpectedly and jarringly pops up. 
I haven't found a way to navigate to the next/prev links that appear when I use 
a mouse, or found any other way to get access to the other images. So, despite 
being CSS 3 based and without JavaScript, a cursory glance at it leads me to 
conclude that it is highly inaccessible. 

-- 
David Dorward
http://dorward.me.uk



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



[WSG] AUTO: Fran Sheppard/TGA/Health is out of the office. (returning 19/05/2011)

2011-05-17 Thread Fran . Sheppard

I am out of the office until 19/05/2011.



I will respond to all other enquiries upon my return to work.


Note: This is an automated response to your message  WSG Digest sent on
18/05/2011 10:42:20 AM.

This is the only notification you will receive while this person is away.



***
Important: This transmission is intended only for the use of the addressee and 
may contain confidential or legally privileged information and has been sent in 
accordance with the TGA security policy.

If you are not the intended recipient, you are notified that any use or 
dissemination of this communication is strictly prohibited. If you receive this 
transmission in error please notify the author Immediately and delete all 
copies of this transmission.





***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



[WSG] RE: Accessible Modal/Lightbox Code

2011-05-17 Thread Sam Dwyer
https://github.com/fnagel/jQuery-Accessible-RIA/ looks like a repo that has a 
few decent jquery style plugins that implement wai-aria and keyboard 
accessibility to some of the more common design patterns - including a lightbox.

Haven't tested it, but a cursory glance looks like it ticks quite a few boxes.

S

-Original Message-
From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org] On 
Behalf Of Spellacy, Michael
Sent: Wednesday, 18 May 2011 12:31 AM
To: wsg@webstandardsgroup.org
Subject: [WSG] Accessible Modal/Lightbox Code

Hi List!

A colleague of mine is looking for accessible modal window code.
Anything good out there? Thanks in advance!

Regards,
Spell


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***

Please consider the environment before printing this e-mail.

The information contained in this email and any attachment is confidential and
may contain legally privileged or copyright material.   It is intended only for
the use of the addressee(s).  If you are not the intended recipient of this
email, you are not permitted to disseminate, distribute or copy this email or
any attachments.  If you have received this message in error, please notify the
sender immediately and delete this email from your system.  The ABC does not
represent or warrant that this transmission is secure or virus free.   Before
opening any attachment you should check for viruses.  The ABC's liability is
limited to resupplying any email and attachments.

***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***