<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Accessibility: Web Standards vs Hacks</title>
	<link>http://www.jeffothy.com/weblog/accessibility-web-standards-vs-hacks/</link>
	<description>Things that are possibly better left written down...</description>
	<pubDate>Wed, 07 Jan 2009 19:48:06 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1</generator>

	<item>
		<title>By: Brantone</title>
		<link>http://www.jeffothy.com/weblog/accessibility-web-standards-vs-hacks/#comment-28</link>
		<author>Brantone</author>
		<pubDate>Mon, 18 Jul 2005 07:39:12 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/accessibility-web-standards-vs-hacks/#comment-28</guid>
					<description>I can relate ... I've pulled my hair out trying to get some site to work across multiple browsers, damned frustrating ... especially how widths are calculated when it comes to borders, padding, and margins in IE, the bane of my coding existence.
The reason we shouldn't use "old technology" is because ... uh, it's old (?) Actually I'm not too sure why not, but I could regurgitate some of the stuff I've read over the years. Separation of content and layout: if you want to redo the layout down the road, it's easier to do so if there's a separation, with tables, things are nested and it gets ugly (not to mention longer to load). Plus if you have CSS it's only loaded once, and the code looks cleaner.
In my mind those are just excuses for someone who got confused with tables. Although I agree nested tables can get ugly (and Netscape 4 had a nasty habit of really screwing them up), I still think that some stuff can be done a hell of a lot easier with tables rather than stupid p.i.t.a. CSS hacks.
With regards to the "separation" issue, designers constantly say it'll be easier to redesign later, and content is separate, or you can have multiple style sheets for the same content. While in theory this may be a novel idea, in practise pages aren't redesigned often enough to deem it a worthy cause.

Personally, I'm not really sure which side of the arguement I'll take on this one. Both arguements for and against are valid. I like looking at clean, concise HTML code not cluttered by td's and such, and I like having all my stuff in a CSS file. On the other hand, trying to ensure the page renders properly in each conceivable permutation of platform and browswer can be extremely frustrating, sometimes having to "tough luck" some browser and simply have it degrade to something ugly but readable.

That being said, and now that I've rambled on aimlessly ... I think I've just talked myself back to your conclusion: "why bother?"
If anything it provides a good challenge, and possibly a big headache.</description>
		<content:encoded><![CDATA[<p>I can relate &#8230; I&#8217;ve pulled my hair out trying to get some site to work across multiple browsers, damned frustrating &#8230; especially how widths are calculated when it comes to borders, padding, and margins in IE, the bane of my coding existence.<br />
The reason we shouldn&#8217;t use &#8220;old technology&#8221; is because &#8230; uh, it&#8217;s old (?) Actually I&#8217;m not too sure why not, but I could regurgitate some of the stuff I&#8217;ve read over the years. Separation of content and layout: if you want to redo the layout down the road, it&#8217;s easier to do so if there&#8217;s a separation, with tables, things are nested and it gets ugly (not to mention longer to load). Plus if you have CSS it&#8217;s only loaded once, and the code looks cleaner.<br />
In my mind those are just excuses for someone who got confused with tables. Although I agree nested tables can get ugly (and Netscape 4 had a nasty habit of really screwing them up), I still think that some stuff can be done a hell of a lot easier with tables rather than stupid p.i.t.a. CSS hacks.<br />
With regards to the &#8220;separation&#8221; issue, designers constantly say it&#8217;ll be easier to redesign later, and content is separate, or you can have multiple style sheets for the same content. While in theory this may be a novel idea, in practise pages aren&#8217;t redesigned often enough to deem it a worthy cause.</p>
<p>Personally, I&#8217;m not really sure which side of the arguement I&#8217;ll take on this one. Both arguements for and against are valid. I like looking at clean, concise HTML code not cluttered by td&#8217;s and such, and I like having all my stuff in a CSS file. On the other hand, trying to ensure the page renders properly in each conceivable permutation of platform and browswer can be extremely frustrating, sometimes having to &#8220;tough luck&#8221; some browser and simply have it degrade to something ugly but readable.</p>
<p>That being said, and now that I&#8217;ve rambled on aimlessly &#8230; I think I&#8217;ve just talked myself back to your conclusion: &#8220;why bother?&#8221;<br />
If anything it provides a good challenge, and possibly a big headache.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jeffrey Larson</title>
		<link>http://www.jeffothy.com/weblog/accessibility-web-standards-vs-hacks/#comment-29</link>
		<author>Jeffrey Larson</author>
		<pubDate>Mon, 18 Jul 2005 18:40:35 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/accessibility-web-standards-vs-hacks/#comment-29</guid>
					<description>[quote] sometimes having to “tough luck” some browser and simply have it degrade to something ugly but readable [/quote]

I think having a site degrade nicely on older browsers is a good thing.  Aside from the simplest CSS, older browsers --like NN4-- don't have a solid implementation CSS2 for layout and such.

Currently I only own x86 computers but yeah, I do wish I had a Mac to test that partition of permutations.

Good point on the infrequency of redesign.  

Further from just HTML/CSS can't there also be separation of content and layout using server-side scripting for templating.  If a site consisted of a bunch of repeated modules, these could be printed from functions, which would only have to be edited once in order to change the markup.  This doesn't give you the benefits of complete separation in the rendered source and the CSS single download either.

I'm glad you don't think this is clear cut either.</description>
		<content:encoded><![CDATA[<p>[quote] sometimes having to “tough luck” some browser and simply have it degrade to something ugly but readable [/quote]</p>
<p>I think having a site degrade nicely on older browsers is a good thing.  Aside from the simplest CSS, older browsers &#8211;like NN4&#8211; don&#8217;t have a solid implementation CSS2 for layout and such.</p>
<p>Currently I only own x86 computers but yeah, I do wish I had a Mac to test that partition of permutations.</p>
<p>Good point on the infrequency of redesign.  </p>
<p>Further from just HTML/CSS can&#8217;t there also be separation of content and layout using server-side scripting for templating.  If a site consisted of a bunch of repeated modules, these could be printed from functions, which would only have to be edited once in order to change the markup.  This doesn&#8217;t give you the benefits of complete separation in the rendered source and the CSS single download either.</p>
<p>I&#8217;m glad you don&#8217;t think this is clear cut either.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Derek Field</title>
		<link>http://www.jeffothy.com/weblog/accessibility-web-standards-vs-hacks/#comment-31</link>
		<author>Derek Field</author>
		<pubDate>Tue, 19 Jul 2005 06:29:56 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/accessibility-web-standards-vs-hacks/#comment-31</guid>
					<description>Jeff,  I'm still a total rookie but could you possibly detect what browswer the surfer is using and then have them relocated to the page specifically designed for them and their browser generation?  Can you code in multiple versions of a page and have other browsers ignore stuff until it's for them?  That way maybe you could type out the content only once?  That sounds like a lot of extra work and maybe even a stupid suggestion but is it possible?

I know in my 'idiot's guide to HTML' that I'm working through there was a section on the JavaScript statements, 'navigator.appName' and 'navigator.appVersion'.  You could then send the user somewhere else using the 'location.href' statement right?  Or, you could at least notify them that they're using an old browser and that if they want to see the site as it's meant to be, to download the most updated version?  And you could provide a link for them.

I agree with your comments about the small percentage of your viewing audience using old browsers and maybe not worrying about them.  Also, don't most new computer's with Windows XP automatically download any updates for IE?  Maybe it will be less of a problem in the future?  I know I'm limited to Microsoft experience right now, but wouldn't Netscape and Mozilla also at least notify you to update your version when possible?

I wish  tag worked with Netscape.  I also know that Netscape didn't view my FTP very well either but I'm aware that people should be using real FTP clients if they wanted full functionality.

Anyway, those are my limited knowledge thoughts.</description>
		<content:encoded><![CDATA[<p>Jeff,  I&#8217;m still a total rookie but could you possibly detect what browswer the surfer is using and then have them relocated to the page specifically designed for them and their browser generation?  Can you code in multiple versions of a page and have other browsers ignore stuff until it&#8217;s for them?  That way maybe you could type out the content only once?  That sounds like a lot of extra work and maybe even a stupid suggestion but is it possible?</p>
<p>I know in my &#8216;idiot&#8217;s guide to HTML&#8217; that I&#8217;m working through there was a section on the JavaScript statements, &#8216;navigator.appName&#8217; and &#8216;navigator.appVersion&#8217;.  You could then send the user somewhere else using the &#8216;location.href&#8217; statement right?  Or, you could at least notify them that they&#8217;re using an old browser and that if they want to see the site as it&#8217;s meant to be, to download the most updated version?  And you could provide a link for them.</p>
<p>I agree with your comments about the small percentage of your viewing audience using old browsers and maybe not worrying about them.  Also, don&#8217;t most new computer&#8217;s with Windows XP automatically download any updates for IE?  Maybe it will be less of a problem in the future?  I know I&#8217;m limited to Microsoft experience right now, but wouldn&#8217;t Netscape and Mozilla also at least notify you to update your version when possible?</p>
<p>I wish  tag worked with Netscape.  I also know that Netscape didn&#8217;t view my FTP very well either but I&#8217;m aware that people should be using real FTP clients if they wanted full functionality.</p>
<p>Anyway, those are my limited knowledge thoughts.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Jeffrey Larson</title>
		<link>http://www.jeffothy.com/weblog/accessibility-web-standards-vs-hacks/#comment-34</link>
		<author>Jeffrey Larson</author>
		<pubDate>Tue, 19 Jul 2005 16:06:53 +0000</pubDate>
		<guid>http://www.jeffothy.com/weblog/accessibility-web-standards-vs-hacks/#comment-34</guid>
					<description>You are talking about two distinct methods.

One: browser sensing to forward people on to a site specific for their browser.  This would mean that you are coding any number of webpages (or even full sites) multiplied by the number of browsers your audience uses.  This means the amount of code grows pretty much proportional to the number of browser, and that is unacceptable everywhere except for small single pages with a specific purpose.  It's typically not worth the effort to do this, and when you think about it, this makes maintenance ridiculously painful.

Two: having a single coded page which has sections that are ignored by certain browsers which don't support certain functionality.  This is hack design.  It comes back to the browser specific code that _should_ break on purpose in certain browsers and work in others.  This again means little tweaks to the code could require huge amounts of testing in all users browser/OS combinations.

Your comment on Windows XP fails.  MS Windows XP is just one operating system out of dozens.   Even if it is the most common OS, users still can use their browser of choice.  For instance, I use Windows XP but I use Mozilla Firefox.  IMHO, it is frustrating and just not fair to require users to upgrade their software in order to view a website.  I've had experiences where stuff wouldn't work with old versions of software and yet the computer would not support the newer versions system requirements.  Just not fair, and that's where backwards compatibility becomes key.

Thanks for your comments man!</description>
		<content:encoded><![CDATA[<p>You are talking about two distinct methods.</p>
<p>One: browser sensing to forward people on to a site specific for their browser.  This would mean that you are coding any number of webpages (or even full sites) multiplied by the number of browsers your audience uses.  This means the amount of code grows pretty much proportional to the number of browser, and that is unacceptable everywhere except for small single pages with a specific purpose.  It&#8217;s typically not worth the effort to do this, and when you think about it, this makes maintenance ridiculously painful.</p>
<p>Two: having a single coded page which has sections that are ignored by certain browsers which don&#8217;t support certain functionality.  This is hack design.  It comes back to the browser specific code that _should_ break on purpose in certain browsers and work in others.  This again means little tweaks to the code could require huge amounts of testing in all users browser/OS combinations.</p>
<p>Your comment on Windows XP fails.  MS Windows XP is just one operating system out of dozens.   Even if it is the most common OS, users still can use their browser of choice.  For instance, I use Windows XP but I use Mozilla Firefox.  IMHO, it is frustrating and just not fair to require users to upgrade their software in order to view a website.  I&#8217;ve had experiences where stuff wouldn&#8217;t work with old versions of software and yet the computer would not support the newer versions system requirements.  Just not fair, and that&#8217;s where backwards compatibility becomes key.</p>
<p>Thanks for your comments man!</p>
]]></content:encoded>
				</item>
</channel>
</rss>
