Categories
code dom javascript podcast web

Unobtrusive Javacript (and the DOM)

Ah, Javascript. The wonderful scripting language that creates lots of cool stuff on your web page. But how do you make it Accessible?

Download Web Axe Episode 11

Links:

This is an example of a javascript “listener” which opens a link in a new window (using a function) if the rel in the a tag is “external”.

window.onload=function(){
setOnClick();
}

function setOnClick() {
if(!document.getElementsByTagName) {
return;
}
var anchors = document.getElementsByTagName("a");
for (var i=anchors.length; i !=0; i--) {
var a=anchors[i-1];
if (a.rel.indexOf("external") != -1) {
a.onclick = function(){newWin(this.href,'popup1',700,400);
return false;}
}
}

Categories
administrative podcast

Want to be on Web Axe?

Dennis is looking for an Accessibility guru who wants to be part of at least one podcast on Web Axe. If interested just send Dennis an email at web axe at gmail dot com. Topic ideas welcomed.

Categories
acrobat pdf podcast

Accessible PDF (Acrobat) Files

We all know that PDF files (Adobe Acrobat) are very common in the workplace and on the web. Learn how to make them Accessible in this tenth podcast of Web Axe.

Download Web Axe Episode 10

Links:

We know about PDF files. Our PDF converter allows you to convert PDF to Word as well as PDF to Excel so you can use and analyze without retyping.

Categories
articles

Ten Reasons Clients Don’t Care About Accessibility

I found a great article from Digital Web on the frustrations of getting the client to understand the need for web accessibility.

10 Reasons Clients Don’t Care About Accessibility

What are your thoughts?

Categories
accesskey code podcast tab web

Tab Order and Accesskey

Techniques and discussion on setting the tabbing sequence and creating access keys for elements on your HTML page.

Download Web Axe Episode 9

Sample Code:

table of contents