473,772 Members | 2,244 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Javascript Accessibility Techniques

Hi People,

The WAI (Web Accessibility Initiative) folk in the W3 are looking to
get a good script techniques document, and are obviously looking for
help. See Matt May:

http://www.bestkungfu.com/archive/?id=496

now I don't know Matt really, I managed to miss talking to him at a
meeting we were both at last week, but generally the W3 and WAI folk
are all nice people. Work wouldn't be onerous, and even if you could
just lurk on the mailing list you would be of some value, so if anyone
does have some spare time, please let Matt know.

Reading http://www.w3.org/TR/WCAG20/ is probably a good pre-requisite.

Cheers,

Jim.
--
comp.lang.javas cript FAQ - http://jibbering.com/faq/

Jul 23 '05 #1
2 1182
JRS: In article <40************ ****@news.indiv idual.net>, seen in
news:comp.lang. javascript, Jim Ley <ji*@jibbering. com> posted at Sat, 12
Jun 2004 21:49:38 :
The WAI (Web Accessibility Initiative) folk in the W3 are looking to
get a good script techniques document, and are obviously looking for
help.

ISTM that the most important thing is never to use a new feature unless
it is truly necessary or adds greatly to the value of the page.
I wanted to check for a new version of TIDY, for Win98 console mode.

Consider http://tidy.sourceforge.net/ - that page is technically
satisfactory to me and simple in layout, though redesign advice from
someone more literate than technical could help (and it breaks ISO8601).
The page contains two mentions of Windows 98, in links.

At least one of them, probably that to htmltrim, loads a "choose where
from" page of moderately decorated aspect; but on (the only) two
occasions that I tried it, my browser crashed. On the first occasion,
all browser windows were lost, but Win98 and the Net connection
continued. On the second, IE appeared to be loop-crashing in the crash-
report code; hard reset time.

This represents what must be the nadir of accessibility. The offending
page in fact needed nothing but the plainest HTML - it really needed
only <p> or <br> and <a href= ... </a>.
It's not the only case of a "checking-related" site crashing the
browser, as you may recall.

Granted that, before the crash, I did have time to see the nature of the
page; but it cannot count as being practically accessible to me.

CAVEAT : for obvious reasons, I only tried it twice.

Work wouldn't be onerous, and even if you could
just lurk on the mailing list you would be of some value, so if anyone
does have some spare time, please let Matt know.

W3 appear to communicate only by published mailing list; I find this an
unacceptable deterrent. There should be a means of direct communication
with the author responsible for each page, in which correspondents'
copyright was respected.

So if you see Matt again ...

--
© John Stockton, Surrey, UK. ?@merlyn.demon. co.uk Turnpike v4.00 IE 4 ©
<URL:http://jibbering.com/faq/> JL / RC : FAQ for news:comp.lang. javascript
<URL:http://www.merlyn.demo n.co.uk/js-index.htm> jscr maths, dates, sources.
<URL:http://www.merlyn.demo n.co.uk/> TP/BP/Delphi/jscr/&c, FAQ items, links.
Jul 23 '05 #2
On Sun, 13 Jun 2004 13:49:27 +0100, Dr John Stockton
<sp**@merlyn.de mon.co.uk> wrote:
This represents what must be the nadir of accessibility. The offending
page in fact needed nothing but the plainest HTML - it really needed
only <p> or <br> and <a href= ... </a>.
Some thingW3 appear to communicate only by published mailing list; I find this an
unacceptable deterrent. There should be a means of direct communication
with the author responsible for each page, in which correspondents'
copyright was respected.


Err, no, they use email, teleconferences , IRC and F2F meetings, it's
not difficult to find an appropriate method.

The majoriry of WAI groups do work in the open, but if you wish to
discuss something specific in private, the documents and groups all
publish their email addresses alongside the spec.

When you post to the W3 mailing lists, you also have to register your
acceptance of the archive policy before it is archived.

Jim.
--
comp.lang.javas cript FAQ - http://jibbering.com/faq/

Jul 23 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

12
10821
by: Tarken | last post by:
Hi, I am trying to do some refactoring of a web site to ensure that it displays in the most web clients possible. One of the pages requires to be redirected to another automatically, for one reason or another. My style is usually to reduce the use of Javascript, as much as possible, as in my experience it often causes compatibility issues. Anyhow, the page currently has: ....
0
1326
by: Harlan Messinger | last post by:
This question is based on Examples 2 and 3 on http://gavelcade.com/table.html Beyond correct use of THs, this table is not specially marked up for accessibility--except for a scope="col" attribute for the "Country" header. And therein lies my question. It seems you can break accessibility table markup into three different levels: 1. None (except for THs), as long as the headers are the first cell in
8
1441
by: fleemo17 | last post by:
I've started a new job as a Web Developer for the County, and accessibility for users with disabilities is high on the organization's priority list. I'm looking for suggestions on where to turn for the best resources on assuring accessibility, be it books, seminars, whatever. Thanks. -Fleemo
6
1176
by: stephan | last post by:
How to solve the problem of the accessibility of members among files( .h or ..cpp ) in __gc classes? Ex : // AA.h file public __gc class AA : UserControl
26
11081
by: wardy | last post by:
Hi all, looking for a little bit of help.....I'm currently in the process of trying to understand the impact of the 508 guidelines on a web site that I am involved with, and I have a question surrounding the use of Javascript. The site currently relies on Javascript for navigating from page to page - I cannot find anything in the 508 guidelines like the 6.3 WAI checkpoint for AA compliance: "Ensure that pages are usable when scripts,...
36
2186
by: Mark Rae | last post by:
Hi, Just had an interesting message from someone who was unable to view one of my sites because they have JavaScript turned off, and expecting me to re-write my site so that they could view it... I'm interested in hearing other people's opinions about this. I use JavaScript all the time, and can't really imagine ASP.NET development without it...
6
2776
by: Venkatesh | last post by:
Hello All, I have couple of doubts regarding the concept of on-demand javascript loading using javascript code. I could see on the net different techniques for achieving this - techniques like: 1. document.write("<script src= language='JavaScript'></script>); 2. sc = document.createElement("<script>"); sc.setAttribute("src", ); and append this to the head
22
2944
by: Dan Rumney | last post by:
Hi all, I've been writing Javascript for quite a while now and have, of late, been writing quite a lot of AJAX and AJAX-related code. In the main, my dynamically generated pages are created using Perl on the backend, with Javascript providing limited frontend functionality. As an example, an expanding tree would be fully populated on the server-side and then presented to the browser, with Javascript and CSS being used to vary the...
5
1395
by: steephill.tv | last post by:
Some windows IE users encounter an error when launching javascript from my links. An error is generated before the window opens. For example: <a href="javascript:PlayCosmos('pr-08-highlights-eurosport','7385866', 13,4,2008);">One Minute Race Highlights from Paris-Roubaix</a> function PlayCosmos(title, id, day, month, year) { url = 'http://cosmos.bcst.yahoo.com/up/player/popup/index.php? cl='+id;
0
9620
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9454
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9912
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7460
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5354
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5482
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4007
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3609
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2850
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.