<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Advanced CSS Design Resources - last-child.com &#187; Quick Tips</title>
	<atom:link href="http://www.last-child.com/category/quick-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.last-child.com</link>
	<description>CSS Toys for Professional Web Developers</description>
	<lastBuildDate>Thu, 08 Jul 2010 16:59:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to include a copyright symbol in any language</title>
		<link>http://www.last-child.com/include-copyright-symbol/</link>
		<comments>http://www.last-child.com/include-copyright-symbol/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 16:59:14 +0000</pubDate>
		<dc:creator>Ted</dc:creator>
				<category><![CDATA[Online Resource]]></category>
		<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[XSL]]></category>

		<guid isPermaLink="false">http://www.last-child.com/?p=248</guid>
		<description><![CDATA[I found this page today while trying to find the proper way to add a copyright symbol ( © ) with XSL. Copyright Symbol Webpage is simply a good reference to how and why to use the copyright symbol. Here&#8217;s a snippet on how to use it in XSL Unicode Copyright Symbol &#8211; Programmers, please [...]]]></description>
			<content:encoded><![CDATA[<p>I found this page today while trying to find the proper way to add a copyright symbol ( © ) with XSL. <a href="http://www.copyrightauthority.com/copyright-symbol/">Copyright Symbol Webpage</a> is simply a good reference to how and why to use the copyright symbol.</p>
<p>Here&#8217;s a snippet on how to use it in XSL</p>
<blockquote cite="">
<h3>Unicode Copyright Symbol &#8211; Programmers, please NOTE:</h3>
<p>Unicode is required by modern standards such as Java, XML, ECMAScript / JavaScript, CORBA, WML, LDAP etc.</p>
<p>Pretty much all of the questions about Copyright Symbols for standards that use Unicode will require the <strong>&amp;#169;</strong> input. however, this may differ such as for XSL as listed below. We have tried to collate what we can for you &#8211; if you can&#8217;t work out the answer from here&#8230;keep on searching – and please write to us with any information that you think would be useful on this site.</p>
<h4>Java Script / JSP Copyright Symbol</h4>
<p>In Java use the unicode   <strong>&amp;#169;</strong> or  <strong>&amp;#xA9;</strong> to get the copyright symbol.  One common mistake is typing the © into the code, which will not work.</p>
<h4>XML Copyright Symbol</h4>
<p>In XML use the unicode   <strong>&amp;#169;</strong> or  <strong>&amp;#xA9;</strong> to get the copyright symbol.</p>
<h4>XSL Copyright Symbol</h4>
<p>If you were to use the &#8216;<strong>&amp;copy;</strong>&#8216; entity with XSL, you may well come across the complaint of &#8220;Reference to undefined entity &#8216;copy&#8217;.&#8221;</p>
<p>In XSL always use <strong>&amp;#xA9;</strong></p>
<p><cite><a href="http://www.copyrightauthority.com/copyright-symbol/">Copyright Symbol Webpage</a></cite>
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.last-child.com/include-copyright-symbol/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A quick CSS3 sibling test with the video tag</title>
		<link>http://www.last-child.com/css3-sibling-with-video-tag/</link>
		<comments>http://www.last-child.com/css3-sibling-with-video-tag/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 15:56:31 +0000</pubDate>
		<dc:creator>Ted</dc:creator>
				<category><![CDATA[:absolute]]></category>
		<category><![CDATA[:block]]></category>
		<category><![CDATA[:focus]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[Siblings]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[position]]></category>

		<guid isPermaLink="false">http://www.last-child.com/?p=240</guid>
		<description><![CDATA[I am working on a little widget that uses the html5 video tag on one of my test sites: Fyvr.net. I wanted to display related information when the video is playing. The sibling selector makes this easy. Here&#8217;s the basic markup &#60;li> &#60;video>...&#60;/video> &#60;p>...&#60;/p> &#60;/li> I wanted the paragraph to appear when the video is [...]]]></description>
			<content:encoded><![CDATA[<p>I am working on a little widget that uses the html5 video tag on one of my test sites: <a href="http://fyvr.net">Fyvr.net</a>.<br />
I wanted to display related information when the video is playing.  The sibling selector makes this easy. </p>
<p>Here&#8217;s the basic markup</p>
<pre><code lang="HTML">
&lt;li>
&lt;video>...&lt;/video>
&lt;p>...&lt;/p>
&lt;/li>
</code>
</pre>
<p>I wanted the paragraph to appear when the video is selected. So here&#8217;s the simple CSS</p>
<pre><code lang="CSS">
section#videolist li {
	position:relative;
}
section#videolist li p {
	display:none;
	position:absolute;
	bottom:-100px;
	left:0;
}
section#videolist li video:focus+p {
	display:block;
}
</code></pre>
<p>The sibling selector (+) is telling the browser to display the paragraph as block when its video brother has focus. This is a rough test. There could be some accessibility issues and I&#8217;ll need to test this out. Obviously this will not work in Internet Explorer. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.last-child.com/css3-sibling-with-video-tag/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cross-browser HTML5 video tag with fallback for Flash users</title>
		<link>http://www.last-child.com/cross-browser-html5-video/</link>
		<comments>http://www.last-child.com/cross-browser-html5-video/#comments</comments>
		<pubDate>Sun, 13 Jun 2010 17:00:44 +0000</pubDate>
		<dc:creator>Ted</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Online Resource]]></category>
		<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[apple]]></category>

		<guid isPermaLink="false">http://www.last-child.com/?p=235</guid>
		<description><![CDATA[Apple&#8217;s lack of support for Flash on the iPhone and iPad has forced people to reconsider the value of HTML5 and its video tag. It&#8217;s no longer something to put off until the future. However, adding HTML5 video support to your site AND continue to provide a Flash option for older browsers (I.E.) is not [...]]]></description>
			<content:encoded><![CDATA[<p>Apple&#8217;s lack of support for <a href="http://www.amazon.com/gp/product/B003B32AJ2?ie=UTF8&#038;tag=csstoyslastch-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B003B32AJ2">Flash</a><img src="http://www.assoc-amazon.com/e/ir?t=csstoyslastch-20&#038;l=as2&#038;o=1&#038;a=B003B32AJ2" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> on the <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2Fs%3Fie%3DUTF8%26x%3D0%26ref_%3Dnb%5Fsb%5Fnoss%26y%3D0%26field-keywords%3Diphone%2520%26url%3Dsearch-alias%253Delectronics&#038;tag=csstoyslastch-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=390957">iPhone</a><img src="https://www.assoc-amazon.com/e/ir?t=csstoyslastch-20&#038;l=ur2&#038;o=1" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> and <a href="http://www.amazon.com/gp/product/B003K824EO?ie=UTF8&#038;tag=csstoyslastch-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B003K824EO">iPad</a><img src="http://www.assoc-amazon.com/e/ir?t=csstoyslastch-20&#038;l=as2&#038;o=1&#038;a=B003K824EO" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> has forced people to reconsider the value of HTML5 and its video tag. It&#8217;s no longer something to put off until the future. However, adding HTML5 video support to your site AND continue to provide a Flash option for older browsers (I.E.) is not as simple as you might expect.</p>
<p>While the video tag has been standardized, there is a lack of consensus for supporting the <a href="http://en.wikipedia.org/wiki/Video_codec">codecs</a> used to package the videos for distribution and playback. Some browsers are supporting the  OGV format, some support the more popular but licensed mp4 format. Others, such as Chrome, will support both. To make it even more exciting, there is a new version under development to make a truly open-sourced format: <a href="http://en.wikipedia.org/wiki/Webm">WebM</a>. </p>
<p>This means your video tag needs to define multiple movie sources to make it playable on all browsers. It sounds complicated because it is. Luckily, <a href="http://camendesign.com/">Kroc Camen</a> has written a great article and code pattern for adding a cross-browser video tag with fallback to Flash for the older browsers: <a href="http://camendesign.com/code/video_for_everybody">Video for Everybody!</a>.</p>
<p>The article is full of great advice from a programmer that has learned the stuff the hard way. Here&#8217;s an explanation of how you&#8217;ll need to adjust your <a href="http://en.wikipedia.org/wiki/Htaccess">htaccess</a> file.</p>
<blockquote cite="http://camendesign.com/code/video_for_everybody">
<p>
			Ensure your server is using the correct mime-types. <cite>Firefox</cite> will <strong>not</strong><br />
			play the OGG video if the mime-type is wrong. Place these lines in your <samp>.htaccess</samp><br />
			file to send the correct mime-types to browsers
		</p>
<pre><code>
AddType video/ogg  .ogv
AddType video/mp4  .mp4
AddType video/webm .webm</code></pre>
<p><cite><a href="http://camendesign.com/code/video_for_everybody">Video for Everybody!</a> &#8211; Kroc Camen</cite>
</p></blockquote>
<h3>Related Resources</h3>
<ul>
<li><a href="http://speckyboy.com/2010/04/23/html5-video-libraries-toolkits-and-players/">HTML5 video Libraries, Toolkits and Players</a> &#8211; Specky Boy</li>
<li><a href="http://www.longtailvideo.com/players/jw-flv-player/">JW Player: Flash Video Player</a> &#8211; a base flash movie to use as your fallback flash movie</li>
<li><a href="http://hacks.mozilla.org/2009/06/html5-video-fallbacks-markup/">html5 video fallbacks with markup</a>  &#8211; Mozilla Hacks</li>
<li><a href="http://www.archive.org/details/FedFlix">Fed Flix</a> &#8211; Repository of US Government films in various formats. These are good for testing your video markup.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.last-child.com/cross-browser-html5-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Yahoo! BOSS Hacks web site</title>
		<link>http://www.last-child.com/new-yahoo-boss-hacks-web-site/</link>
		<comments>http://www.last-child.com/new-yahoo-boss-hacks-web-site/#comments</comments>
		<pubDate>Sat, 02 May 2009 17:00:31 +0000</pubDate>
		<dc:creator>Ted</dc:creator>
				<category><![CDATA[Developers]]></category>
		<category><![CDATA[Online Resource]]></category>
		<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[Yahoo!]]></category>
		<category><![CDATA[boss]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[resource]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.last-child.com/?p=196</guid>
		<description><![CDATA[There&#8217;s a lot of information about Yahoo! Boss on the official site: Yahoo! Developer Network. However there is still a need for a more informal portal for quick reviews of BOSS-based mashups, helpful hints, techniques, and upcoming events. BOSS Hacks is an unofficial Yahoo! BOSS Site that does exactly that. I started it last week [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a lot of information about Yahoo! Boss on the official site: <a href="http://developer.yahoo.com">Yahoo! Developer Network</a>. However there is still a need for a more informal portal for quick reviews of <a class="zem_slink" href="http://developer.yahoo.com/search/boss/" title="BOSS" rel="homepage">BOSS</a>-based mashups, helpful hints, techniques, and upcoming events.</p>
<p><a href="http://bosshacks.com">BOSS Hacks</a> is an unofficial <strong>Yahoo! BOSS</strong> Site that does exactly that. I started it last week as I noticed this site was becoming less about standards based markup and more about how I was working with Yahoo! BOSS. </p>
<p>This site will feature shorter, more succinct blog posts. I&#8217;ll save any large posts for the YDN blog. Please feel free to visit the site and send me notes about what you would like to see or any new BOSS-based sites that should be mentioned.<br />
<h6 class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.khaitan.org/blog/2009/01/yahoo-boss-growth/">Yahoo BOSS&#8217; Growth</a> (khaitan.org)</li>
<li class="zemanta-article-ul-li"><a href="http://www.readwriteweb.com/archives/duck_duck_go_silly_name_interesting_search_engine.php"> Duck Duck Go: Silly Name, Interesting Search Engine </a> (readwriteweb.com)</li>
<li class="zemanta-article-ul-li"><a href="http://blog.programmableweb.com/2009/04/10/yahoo-boss-adds-support-for-delicious/"> Yahoo BOSS Adds Support for Delicious </a> (programmableweb.com)</li>
<li class="zemanta-article-ul-li"><a href="http://news.cnet.com/8301-17939_109-10216283-2.html?part=rss&amp;tag=feed&amp;subj=Webware"> Yahoo adds Delicious data to search partnership </a> (news.cnet.com)</li>
</ul>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=0abd1289-c1c1-4680-aec7-a3db84fa4394" /><span class="zem-script more-related pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.last-child.com/new-yahoo-boss-hacks-web-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick and Free Online PDF Creator</title>
		<link>http://www.last-child.com/quick-free-online-pdf-creator/</link>
		<comments>http://www.last-child.com/quick-free-online-pdf-creator/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 22:25:06 +0000</pubDate>
		<dc:creator>Ted</dc:creator>
				<category><![CDATA[Online Resource]]></category>
		<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[Adobe Acrobat]]></category>
		<category><![CDATA[PDF]]></category>

		<guid isPermaLink="false">http://www.last-child.com/?p=188</guid>
		<description><![CDATA[I needed to create a .pdf document for a paper submission to an upcoming conference. Unfortunately I do not have Acrobat Writer on m laptop so I needed a quick fix. PDF Online has a very simple tool for generating .pdf documents: Doc2PDF. you simply upload your document, give it a name, your email address [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.amazon.com/gp/product/B0018QV3OC?ie=UTF8&#038;tag=csstoyslastch-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B0018QV3OC"><img border="0" src="http://upload.wikimedia.org/wikipedia/en/thumb/5/5a/Adobe-acrobat.png/202px-Adobe-acrobat.png"></a><img src="http://www.assoc-amazon.com/e/ir?t=csstoyslastch-20&#038;l=as2&#038;o=1&#038;a=B0018QV3OC" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>
<p>I needed to create a <a class="zem_slink" href="http://en.wikipedia.org/wiki/Portable_Document_Format" title="Portable Document Format" rel="wikipedia">.pdf</a> document for a paper submission to an upcoming conference. Unfortunately I do not have <a class="zem_slink" href="http://www.adobe.com/acrobat" title="Adobe Acrobat" rel="homepage">Acrobat</a> Writer on m laptop so I needed a quick fix.<br />
<a href="http://www.pdfonline.com/index.htm">PDF Online</a> has a very simple tool for generating .pdf documents: <a href="https://www.pdfonline.com/convert_pdf.asp">Doc2PDF</a>.<br />
 you simply upload your document, give it a name, your email address and its delivered in less than a minute. </p>
<h3>Related articles by Zemanta</h3>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://stuffem.wordpress.com/2009/03/26/low-cost-and-no-cost-pdf-editing/">Low Cost And No Cost PDF Editing</a> (stuffem.wordpress.com)</li>
<li class="zemanta-article-ul-li"><a href="http://blogs.adobe.com/acrolaw/2009/03/acrobat_deployment_tips_links_an.html">Acrobat Deployment Tips, Links and Techniques</a> (blogs.adobe.com)</li>
<li class="zemanta-article-ul-li"><a href="http://news.cnet.com/8301-17939_109-10188844-2.html?part=rss&amp;subj=Webware">PDFVue brings PDF viewing, editing to the browser</a> (news.cnet.com)</li>
<li class="zemanta-article-ul-li"><a href="http://chris.pirillo.com/how-to-edit-pdfs-for-free-online/">How to Edit PDFs for Free Online</a> (chris.pirillo.com)</li>
<li class="zemanta-article-ul-li"><a href="http://news.cnet.com/8301-17939_109-10188844-2.html?part=rss&amp;subj=news">PDFVue brings PDF viewing, editing to the browser</a> (news.cnet.com)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.last-child.com/quick-free-online-pdf-creator/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WCAG 2.0 Quick Reference Guide</title>
		<link>http://www.last-child.com/wcag-20-quick-reference-guide/</link>
		<comments>http://www.last-child.com/wcag-20-quick-reference-guide/#comments</comments>
		<pubDate>Mon, 26 Jun 2006 17:07:35 +0000</pubDate>
		<dc:creator>Ted</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Online Resource]]></category>
		<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[atmedia]]></category>

		<guid isPermaLink="false">http://www.last-child.com/wcag-20-quick-reference-guide/</guid>
		<description><![CDATA[While speaking at the @media conference this year, Gez Lemon announced an easier way to understanding the new WCAG 2.0 requirements. They are meant to be technology neutral to allow future flexibility. Unfortunately, this also makes them difficult to understand. If you are only concerned about HTML, CSS, XML, or another format, use the WCAG [...]]]></description>
			<content:encoded><![CDATA[<p>While speaking at the @media conference this year, <a href="http://juicystudio.com/article/wcag-2-quick-reference-document.php">Gez Lemon</a> announced an easier way to understanding the new WCAG 2.0 requirements. They are meant to be technology neutral to allow future flexibility. Unfortunately, this also makes them difficult to understand.  If you are only concerned about HTML, CSS, XML, or another format, use the <a href="http://www.w3.org/WAI/WCAG20/quickref/">WCAG 2.0 Quick Reference Guide</a> to narrow the specifications to only those you are worried about.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.last-child.com/wcag-20-quick-reference-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Run IE7 as a standalone browser window</title>
		<link>http://www.last-child.com/run-ie7-as-a-standalone-browser-window/</link>
		<comments>http://www.last-child.com/run-ie7-as-a-standalone-browser-window/#comments</comments>
		<pubDate>Tue, 30 May 2006 16:35:10 +0000</pubDate>
		<dc:creator>Ted</dc:creator>
				<category><![CDATA[IE7]]></category>
		<category><![CDATA[Quick Tips]]></category>

		<guid isPermaLink="false">http://www.last-child.com/run-ie7-as-a-standalone-browser-window/</guid>
		<description><![CDATA[Debugging IE7beta can become tedious when you need to continualy install, reboot, uninstall, reboot, etc to switch between IE6 and IE7b2 for testing. Jon Galloway has created a great method to run IE7 as a self contained browser. This will save you many hours in rebooting to test between the browsers. I&#8217;ve been using it [...]]]></description>
			<content:encoded><![CDATA[<p>Debugging IE7beta can become tedious when you need to continualy install, reboot, uninstall, reboot, etc to switch between <abbr title="Internet Explorer 6">IE6</abbr> and <abbr title="Internet Explorer 7 beta2">IE7b2</abbr> for testing. <a href="http://weblogs.asp.net/jgalloway/default.aspx">Jon Galloway</a> has created a great method to run <a href="http://weblogs.asp.net/jgalloway/archive/2005/12/28/434132.aspx">IE7 as a self contained browser</a>. This will save you many hours in rebooting to test between the browsers. I&#8217;ve been using it for a week and can&#8217;t believe how easy this is to use.</p>
<h3>A note of warning</h3>
<p>You should only use this if you have a backup computer or are comfortable working with the registry. I found this out the hard way as the computer crashed while operating the standalone version of IE7. My laptop now displays very odd behavior with IE6. Another person on our team is experiencing similar behaviors. We&#8217;ll need to modify our registry tomorrow to fix this.  How odd&#8230;? When you type an address in IE6, it opens firefox in a new window. It&#8217;s also ignoring conditional comments.  Happy, Happy.  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.last-child.com/run-ie7-as-a-standalone-browser-window/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Making AJAX work with screen readers</title>
		<link>http://www.last-child.com/making-ajax-work-with-screen-readers/</link>
		<comments>http://www.last-child.com/making-ajax-work-with-screen-readers/#comments</comments>
		<pubDate>Thu, 25 May 2006 16:21:46 +0000</pubDate>
		<dc:creator>Ted</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Quick Tips]]></category>

		<guid isPermaLink="false">http://www.last-child.com/making-ajax-work-with-screen-readers/</guid>
		<description><![CDATA[Gez Lemon and Steve Faulkner have published an excellent description of how screen readers react to AJAX and what you can do to make your AJAX-powered pages more accessible. Making AJAX work with screen readers is a comprehensive description of the mechanics behind screen reader behavior, workarounds, and theory. Hats off to these programmers for [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://juicystudio.com/index.php">Gez Lemon</a> and <a href="http://www.accessibleinfo.org.au/">Steve Faulkner</a> have published an excellent description of how screen readers react to AJAX and what you can do to make your AJAX-powered pages more accessible. <a href="http://juicystudio.com/article/making-ajax-work-with-screen-readers.php ">Making AJAX work with screen readers</a> is a comprehensive description of the mechanics behind screen reader behavior, workarounds, and theory. Hats off to these programmers for laying out a clear description of the issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.last-child.com/making-ajax-work-with-screen-readers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New version of Firebug released</title>
		<link>http://www.last-child.com/new-version-of-firebug-released/</link>
		<comments>http://www.last-child.com/new-version-of-firebug-released/#comments</comments>
		<pubDate>Wed, 24 May 2006 17:20:07 +0000</pubDate>
		<dc:creator>Ted</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Online Resource]]></category>
		<category><![CDATA[Quick Tips]]></category>

		<guid isPermaLink="false">http://www.last-child.com/new-version-of-firebug-released/</guid>
		<description><![CDATA[Firebug will soon join the web developer toolbar as a can&#8217;t-live-without tool in your browser. This Firefox extension lets you track down the JS, CSS, and HTML errors that are driving you crazy. Joe Hewitt just released the latest version of Firebug. Get it now while the going is good.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.joehewitt.com/software/firebug/#"><img src="http://www.joehewitt.com/software/firebug/firebug.png" alt="firebug logo"/></a>Firebug will soon join the <a href="http://chrispederick.com/work/webdeveloper/">web developer toolbar</a> as a can&#8217;t-live-without tool in your browser. This Firefox extension lets you track down the JS, CSS, and HTML errors that are driving you crazy. <a href="http://www.joehewitt.com">Joe Hewitt</a> just released the <a href="http://www.joehewitt.com/software/firebug/#">latest version of Firebug</a>. Get it now while the going is good.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.last-child.com/new-version-of-firebug-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To hell with bad accessibility requirements</title>
		<link>http://www.last-child.com/to-hell-with-bad-accessibility-requirements/</link>
		<comments>http://www.last-child.com/to-hell-with-bad-accessibility-requirements/#comments</comments>
		<pubDate>Tue, 23 May 2006 15:44:42 +0000</pubDate>
		<dc:creator>Ted</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[Standardista]]></category>

		<guid isPermaLink="false">http://www.last-child.com/to-hell-with-bad-accessibility-requirements/</guid>
		<description><![CDATA[Sorry Jeffrey Zeldman for twisting your words, but they rang through my mind when I saw the latest missive from Joe Clark, the WCAG Samarai. Zeldman led the troops through the battle over standards guerrilla war against the browsers. Now Joe is doffing his commanders uniform, I&#8217;m hoping it&#8217;s a rather smart one with sophisticated [...]]]></description>
			<content:encoded><![CDATA[<p>Sorry <a href="http://www.zeldman.com">Jeffrey Zeldman</a> for twisting your words, but they rang through my mind when I saw the latest missive from <a href="http://fawny.org/">Joe Clark</a>, the <a href="http://wcagsamurai.org/">WCAG Samarai</a>. Zeldman led the troops through the battle over standards guerrilla war against the browsers. </p>
<p>Now Joe is doffing his commanders uniform, I&#8217;m hoping it&#8217;s a rather smart one with sophisticated typography on the badge and non-leather jackboots. The Samarais will push, prod, and tease the <a href="http://www.w3.org/TR/WAI-WEBCONTENT/">WCAG</a> into making accessibility an attainable goal. </p>
<p>Grab your katana.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.last-child.com/to-hell-with-bad-accessibility-requirements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
