{"id":64,"date":"2005-01-18T00:09:41","date_gmt":"2005-01-18T08:09:41","guid":{"rendered":""},"modified":"2016-05-25T23:34:38","modified_gmt":"2016-05-26T06:34:38","slug":"server-side-accessibility","status":"publish","type":"post","link":"https:\/\/mikeindustries.com\/blog\/archive\/2005\/01\/server-side-accessibility","title":{"rendered":"Does Accessibility Belong on the Server-Side?"},"content":{"rendered":"<p><img loading=\"lazy\" decoding=\"async\" src=\"\/blog\/images\/inline\/intentionallyblank.gif\" width=\"124\" height=\"124\" border=\"0\" alt=\"\" class=\"rightinline\" \/>If you think you knew how to design or code a site with disabled people in mind, head on over to this <a href=\"http:\/\/redish.net\/content\/papers\/interactions.html\" target=\"_blank\">National Institute of Standards and Technology accessibility study<\/a> (via: <a href=\"http:\/\/www.guuui.com\/posting.php?id=1609\" target=\"_blank\">Henrik Olsen<\/a>) and find out exactly how much you <em>don&#8217;t<\/em> know.<\/p>\n<p>Somewhere in Toronto, even <a href=\"http:\/\/www.joeclark.org\" target=\"_blank\">Joe Clark<\/a> is taking notes.<\/p>\n<p>In a nutshell, <a href=\"http:\/\/redish.net\" target=\"_blank\">Redish &#038; Associates<\/a> observed 22 screenreader users interact with a variety of web sites.  Most were government sites, but Google was also included to represent search behavior.  The results showed that most sites, whether or not they complied with the <em>syntax<\/em> of accessibility, were difficult to use based on the <em>presentation<\/em> of the content.<\/p>\n<p>The study covers lots of ground, all the way from &#8220;skip navigation&#8221; links to recommendations against creating branded words like &#8220;LiveHelp&#8221; (apparently, screenreaders read that as &#8220;livahelp&#8221;).<br \/>\n<!--more--><br \/>\nOne particularly humbling thing about the study is that it shows exactly how little effort goes into <em>testing<\/em> for usable accessibility.  I&#8217;m guilty of it myself and so is 99% of the world.  In fact, unless you are physically bringing in a person with a disability to test your site out, you really have no idea what sort of experience you&#8217;re offering.  Installing screenreader software yourself isn&#8217;t really good enough because you&#8217;re not even close to a typical screenreader user.  Even going so far as to put on a blindfold isn&#8217;t good enough because again, it&#8217;s just not your element; you&#8217;re going to be comparing everything to the visual world. Unless you&#8217;re willing to go a few months in a screenreader user&#8217;s shoes, your value as a tester is limited.<\/p>\n<p>The other really interesting takeaway from the study is that visually-impaired users reportedly don&#8217;t want a &#8220;text-only&#8221; version of the site to use&#8230; a sentiment I&#8217;ve heard before.  Here are two quotes from the participants explaining their reasoning:<\/p>\n<blockquote><p>&#8220;I never trust screenreader versions because the text version is never updated.&#8221;<\/p><\/blockquote>\n<blockquote><p>&#8220;It&#8217;s double the work to do text and graphic versions. It&#8217;s better to make the graphic version accessible.&#8221;<\/p><\/blockquote>\n<p>With all due respect to the participants, I don&#8217;t buy either argument.  The first reason cited is an execution problem and not a conceptual problem.  If you are making a text-only version of your site for accessibility reasons and you&#8217;re not updating that content as often as the main version, you can&#8217;t even really call it a text-only version of the site anymore.  It&#8217;s a partial shadow of your site, but it&#8217;s not a text-only facsimile of it.  THAT, is what screenreader users resent&#8230; the lack of equal content.  If we lived in a world where every site had a perfect text-only equivalent, which version do you think screenreader users would find more usable?<\/p>\n<p>The second reason cited (the &#8220;double-work&#8221; rationale) is also an execution issue to me.  At ESPN.com, we run our wireless site <a href=\"http:\/\/pocket.espn.go.com\" target=\"_blank\">pocket.espn.go.com<\/a> using the exact same data sources as our main site.  With smart templating on the server-side, content can be served to our main site or our wireless site simultaneously with no extra effort.  Since Pocket PCs and other handhelds have such limited support for XHTML\/CSS\/JS and all the other stuff we throw into graphical web browsers, it&#8217;s better to just not serve that stuff up in the first place.  If you serve up a simple XHTML page instead with no extraneous elements, it takes a lot less CSS trickery (and a lot less bandwidth) to get where you need to be (more discussion on this subject is available in the comments of <a href=\"http:\/\/www.stopdesign.com\/log\/2004\/12\/16\/small-screens.html\" target=\"_blank\">&#8220;Targeting Small Screens&#8221; over at Stopdesign<\/a>).  So I guess my argument is that it is <em>very<\/em> possible to have a simpler version of your site which doesn&#8217;t require double the work if you employ smart server-side templating.<\/p>\n<p>And that brings me to the final thought of this entry:  Does the advent of mobile web browsing help us in the quest to provide more usable sites for disabled people?  I think that it does.  In a pretty significant way.  As our sites are viewed by more mobile users, the &#8220;mobile&#8221; version of the site (which is pretty acceptable to have) becomes more and more important to us, and thus we begin to put even more time into it.  We also can&#8217;t help but thoroughly test it because we become handheld users ourselves.  At the point where we have parity, won&#8217;t the mobile version provide a better experience to screenreader users than the version filled with Flash, sponsorships, and extra code for traditional web browsers? I think that it will.  Designing for handhelds <em>forces<\/em> you to think like a screenreader user, and that&#8217;s a good thing.<\/p>\n<p>Now, I realize that the whole &#8220;separate version&#8221; issue is controversial and before anyone jumps on my case, I do think that extremely simple sites can get away with one version.  It&#8217;s just that for more complicated sites, I feel like it&#8217;s a lot less work to &#8220;prep&#8221; for accessibility on the server side.  If you do things correctly, all you&#8217;re doing is hiding and rearranging content server-side that you would have done client-side with CSS.  How is this a bad thing?<\/p>\n<p>Thoughts?<\/p>\n<p>(By the way, I fully expect to get beaten down on this by some camps.  I am not an expert and I&#8217;m just throwing this out there because it makes sense to me.)<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you think you knew how to design or code a site with disabled people in mind, head on over to this National Institute of Standards and Technology accessibility study (via: Henrik Olsen) and find out exactly how much you don&#8217;t know.  Somewhere in Toronto, even Joe Clark is taking notes.  In a nutshell, Redish &#038; Associates observed 22 screenreader users interact with a variety of web sites&#8230;<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[37,282],"tags":[],"class_list":["post-64","post","type-post","status-publish","format-standard","hentry","category-code","category-original"],"_links":{"self":[{"href":"https:\/\/mikeindustries.com\/blog\/wp-json\/wp\/v2\/posts\/64","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mikeindustries.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mikeindustries.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mikeindustries.com\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/mikeindustries.com\/blog\/wp-json\/wp\/v2\/comments?post=64"}],"version-history":[{"count":0,"href":"https:\/\/mikeindustries.com\/blog\/wp-json\/wp\/v2\/posts\/64\/revisions"}],"wp:attachment":[{"href":"https:\/\/mikeindustries.com\/blog\/wp-json\/wp\/v2\/media?parent=64"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mikeindustries.com\/blog\/wp-json\/wp\/v2\/categories?post=64"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mikeindustries.com\/blog\/wp-json\/wp\/v2\/tags?post=64"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}