 <?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>Broken Links &#187; DOM</title>
	<atom:link href="http://www.broken-links.com/category/dom/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.broken-links.com</link>
	<description>Thoughts on web development and technologies by Peter Gasston</description>
	<lastBuildDate>Thu, 02 Sep 2010 10:34:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<atom:link rel='hub' href='http://www.broken-links.com/?pushpress=hub'/>
		<item>
		<title>Very quick equal-height columns in jQuery</title>
		<link>http://www.broken-links.com/2009/01/20/very-quick-equal-height-columns-in-jquery/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=very-quick-equal-height-columns-in-jquery</link>
		<comments>http://www.broken-links.com/2009/01/20/very-quick-equal-height-columns-in-jquery/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 11:19:02 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[DOM]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://www.broken-links.com/?p=320</guid>
		<description><![CDATA[I'm having a bit of a love affair with <a href="http://jquery.com/">jQuery</a>, the Javascript library, at the moment. I know my way around JS but am far from an expert, so jQuery's simple syntax is a godsend for me, and provides huge savings in my development time.]]></description>
			<content:encoded><![CDATA[<p>I’m having a bit of a love affair with <a href="http://jquery.com/">jQuery</a>, the Javascript library, at the moment. I know my way around JS but am far from an expert, so jQuery’s simple syntax is a godsend for me, and provides huge savings in my development time.</p>
<p>One quick technique I used yesterday was to make three elements of equal height; it’s very simple and won’t cope with dynamic content, but is perfectly suitable for simple page layouts.</p>
<p><span id="more-320"></span></p>
<p>The code simply takes the elements involved (I’m using two in this example), calculates the height of the tallest, and sets the heights of the others to match:</p>
<pre>var highestCol = Math.max($('#element1').height(),$('#element2').height());
$('.elements').height(highestCol);</pre>
<p>There’s nothing groundbreaking about this, and I’m certainly not claiming to have invented the technique (there’s <a href="http://www.cssnewbie.com/equal-height-columns-with-jquery/">another version here</a>, for example); I provide it here only as an example of how jQuery makes layout problems easy to resolve.</p>
<p>I’ve since discovered that there’s <a href="http://www.cssnewbie.com/equalheights-jquery-plugin/">a plugin</a> which will do this for you, which is much more useful if you want to work with multiple elements, but mine has the advantage of being only two lines!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.broken-links.com/2009/01/20/very-quick-equal-height-columns-in-jquery/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Firefox (Gran Paradiso) 3a7: –moz-initial and forms</title>
		<link>http://www.broken-links.com/2007/08/05/firefox-gran-paradiso-3a7-moz-initial-and-forms/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=firefox-gran-paradiso-3a7-moz-initial-and-forms</link>
		<comments>http://www.broken-links.com/2007/08/05/firefox-gran-paradiso-3a7-moz-initial-and-forms/#comments</comments>
		<pubDate>Sat, 04 Aug 2007 23:13:00 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[DOM]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://www.broken-links.com/2007/08/05/firefox-gran-paradiso-3a7-moz-initial-and-forms/</guid>
		<description><![CDATA[Recently I was chatting with Rapha Martins, and he mentioned a feature he’d like to see in CSS: a ‘default’ value for properties; that is, if you change the value of a property, a keyword that would change it back to the browser default rather than you having to specify that value again. That has [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I was chatting with <a href="http://raphamartins.com/">Rapha Martins</a>, and he mentioned a feature he’d like to see in CSS: a ‘default’ value for properties; that is, if you change the value of a property, a keyword that would change it back to the browser default rather than you having to specify that value again.</p>
<p>That has been proposed for CSS 3, with the ‘<a href="http://www.w3.org/TR/css3-cascade/#initial0">initial</a>’ value, and it’s been <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=80887">introduced into the latest preview of Firefox 3 (Gran Paradiso)</a>, with the browser-specific –moz– prefix. I’ve put together a quick <a href="http://www.broken-links.com/tests/initial.html">couple of basic examples</a> of how it will work (you will, obviously, need the latest preview to see them).</p>
<p><span id="more-89"></span></p>
<p>In the first example, the paragraph inside the box has a green background; on hovering over the box, the background reverts to the initial value — transparent.</p>
<pre>div p { background-color: #0f0; }

div#one:hover p { background-color: -moz-initial; }</pre>
<p>In the second example, the paragraph has been set with a ‘display’ value of ‘none’; on hovering over the box, the initial value of ‘block’ is set.</p>
<pre>div#two p { display: none; }

div#two:hover p { display: -moz-initial; }</pre>
<p>At least, it should; however, whether through a bug or my not completely understanding, it seems to instead set a value of ‘inline’. As I said, that could be a misunderstanding on my part; I’ll need to test further.</p>
<p>I also noticed that form elements have had a bit of a refresh, at least on the Ubuntu system I use; checkboxes and radio buttons glow when hovered, and are more clear when highlighted. Compare Firefox 2 (left) with Gran Paradiso (right) to see the difference:</p>
<p><img src='http://www.broken-links.com/wp-content/uploads/2007/08/ff_forms.png' alt='Checkboxes: FF2 vs FF3' /></p>
<p>It seems to be taking the colour from the OS, which is a nice touch; it’s more Mac-like, although not quite as dominant.</p>
<p>There are more changes listed in the <a href="http://www.mozilla.org/projects/firefox/3.0a7/releasenotes/">release notes</a>; I think it looks to be shaping up nicely.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.broken-links.com/2007/08/05/firefox-gran-paradiso-3a7-moz-initial-and-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS in emails, HTML vs XHTML, and more</title>
		<link>http://www.broken-links.com/2007/04/23/css-in-emails-html-vs-xhtml-and-more/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=css-in-emails-html-vs-xhtml-and-more</link>
		<comments>http://www.broken-links.com/2007/04/23/css-in-emails-html-vs-xhtml-and-more/#comments</comments>
		<pubDate>Mon, 23 Apr 2007 10:02:16 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[DOM]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Typography]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://www.broken-links.com/2007/04/23/css-in-emails-html-vs-xhtml-and-more/</guid>
		<description><![CDATA[I’m back from my holiday, with a quick look at some of the links I would have discussed in more detail had I been here… Researchers explore scrapping Internet — While I’m not against the idea of building a faster and more secure network, I am a little worried by the idea of a closed [...]]]></description>
			<content:encoded><![CDATA[<p>I’m back from my holiday, with a quick look at some of the links I would have discussed in more detail had I been here…</p>
<p><span id="more-42"></span></p>
<p><a href="http://news.yahoo.com/s/ap/20070414/ap_on_hi_te/rebuilding_the_internet_8">Researchers explore scrapping Internet</a> — While I’m not against the idea of building a faster and more secure network, I am a little worried by the idea of a closed system based on proprietary software and run by companies with vested interests.</p>
<p><a href="http://www.campaignmonitor.com/blog/archives/2007/04/a_guide_to_css_support_in_emai_2.html">A Guide to CSS Support in Email: 2007 Edition</a> — Thanks to Microsoft, CSS support in emails is actually moving backwards. The new Outlook uses Word as its rendering engine, and the new Live Mail drops support for many selectors.</p>
<p><a href="http://www.alistapart.com/articles/settingtypeontheweb">Setting Type on the Web to a Baseline Grid</a> — I think web typography is this years big topic, and deservedly so. Graphics and design have progressed enormously, it would be nice to have type to support them.</p>
<p><a href="http://www.digital-web.com/articles/html5_xhtml2_and_the_future_of_the_web/">HTML5, XHTML2, and the Future of the Web</a> and <a href="http://www.webdevout.net/articles/beware-of-xhtml">Beware of XHTML</a> — I think XHTML2 is a long, long way from being adopted as a standard by anybody, and while XHTML1 is parsed as HTML there’s no advantage in using it. Coding HTML4 strict is just as good, and that’s what I’ve taken to doing on many sites I build now.</p>
<p><a href="http://www.microsoft.com/presspass/press/2007/apr07/04-15WPFEPR.mspx">Microsoft Unveils Silverlight to Power the Next Generation of Media Experiences on the Web</a> — This is their attempt at taking some of Adobe’s Flash audience. I haven’t seen the software for creating Silverlight anims yet, but I actually prefer the implementation of this than I do that of Flash; Silverlight uses XML and Javascript to run its commands, so you can make live edits without constant recompiling. However, supporting only 3 OSs (Vista, XP and OS X 10.4.8) and a handful of browsers (IE6, IE7, FF1.5.*, FF2.0.* and Safari 2.04) doesn’t really qualify it as <q>cross-platform and cross-browser</q>. <a href="http://tirania.org/blog/archive/2007/Apr-20.html">Miguel de Icaza gives a more detailed analysis of Silverlight, Flash, and an open-source alternative</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.broken-links.com/2007/04/23/css-in-emails-html-vs-xhtml-and-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SVG waiting in the wings</title>
		<link>http://www.broken-links.com/2007/03/31/svg-waiting-in-the-wings/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=svg-waiting-in-the-wings</link>
		<comments>http://www.broken-links.com/2007/03/31/svg-waiting-in-the-wings/#comments</comments>
		<pubDate>Fri, 30 Mar 2007 23:39:45 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[DOM]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[browsers]]></category>

		<guid isPermaLink="false">http://www.broken-links.com/2007/03/31/svg-waiting-in-the-wings/</guid>
		<description><![CDATA[One technology that’s ready to take the step up onto the big stage is SVG. If you’re not sure what that is, its Wikipedia entry provides a good summary: SVG is an XML markup language for describing two-dimensional vector graphics, both static and animated. That’s a pretty big deal; static or animated images which are [...]]]></description>
			<content:encoded><![CDATA[<p>One technology that’s ready to take the step up onto the big stage is <abbr title="Scalable Vector Graphics">SVG</abbr>. If you’re not sure what that is, its <a href="http://en.wikipedia.org/wiki/Svg">Wikipedia entry</a> provides a good summary:</p>
<blockquote>
<p>SVG is an XML markup language for describing two-dimensional vector graphics, both static and animated.</p>
</blockquote>
<p>That’s a pretty big deal; static or animated images which are marked up with XML, meaning you can use the DOM to manipulate them. Interactive images; imagine the possibilities!</p>
<p><span id="more-38"></span></p>
<p>It can be called in many ways; as an <code>&lt;object&gt;</code>, as an <code>&lt;img&gt;</code>, as a <code>background-image</code>. Being a vector format, it can also be resized without loss of quality, so is perfect for <a href="http://webkit.org/blog/55/high-dpi-web-sites/">High DPI websites</a>.</p>
<p>In short, it’s the format of the future — and it’s pretty close to making the big time.</p>
<p>Firefox and Opera support it natively as an <code>&lt;object&gt;</code>, and the latter have announced that they have it implemented as a background-image in development builds. Internet Explorer and Safari support it as an <code>&lt;object&gt;</code> with the aid of a plugin, which is pre-installed in Safari’s case. They have stated that SVG will be given much more prominence in the next release — largely, I suspect, because of the <a href="http://myblah-blah-tech.blogspot.com/2007/03/apple-safari-adobe-apollo-in-web-app.html">Adobe Apollo deal</a>. Konqueror users can also <a href="http://svg.kde.org/">view SVG with this plugin</a>.</p>
<p>What’s needed to really give it the spotlight it deserves is the same thing that many other emerging technologies need: native support in IE. As the <strike>market-leading</strike> browser with largest market share, it’s frustrating that it’s by far the most conservative.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.broken-links.com/2007/03/31/svg-waiting-in-the-wings/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New features in Gecko 1.9</title>
		<link>http://www.broken-links.com/2007/03/28/new-features-in-gecko-19/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=new-features-in-gecko-19</link>
		<comments>http://www.broken-links.com/2007/03/28/new-features-in-gecko-19/#comments</comments>
		<pubDate>Wed, 28 Mar 2007 10:53:21 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[DOM]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.claudiamassera.com/?p=35</guid>
		<description><![CDATA[Gecko is the rendering engine used in browsers such as Firefox, SeaMonkey, Camino, Epiphany, Netscape, and more. The next version (1.9, currently available as a preview release) introduces a whole load of new features and fixes to the engine. In my last post I mentioned the speed increase thanks to the move to a new [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Gecko_rendering_engine">Gecko</a> is the rendering engine used in browsers such as Firefox, SeaMonkey, Camino, Epiphany, Netscape, and more.</p>
<p>The next version (1.9, currently available as a <a href="http://www.mozilla.org/projects/firefox/3.0a3/releasenotes/">preview release</a>) introduces a whole load of new features and fixes to the engine. In <a href="http://www.broken-links.com/2007/03/24/firefox-to-get-a-speed-boost/">my last post</a> I mentioned the speed increase thanks to the move to a new graphics layer and changes to rendering order, as well as support for the APNG format and fixes to the CSS to allow it to pass the Acid2 test. But there’s more. Here are some new features of interest to developers:</p>
<p><span id="more-35"></span></p>
<p>OS X users will be happy to hear that <a href="http://wiki.mozilla.org/Mac:Cocoa_Widgets">Cocoa is used for widgets</a> instead of Carbon. For non Apple-heads, that means that form objects will be rendered as shiny and round instead of grey and square:</p>
<p><img src="http://www.broken-links.com/wp-content/uploads/2007/03/carbon_cocoa.png" alt="Carbon and Cocoa buttons" /></p>
<p>The CSS2.1 <a href="http://www.blooberry.com/indexdot/css/properties/classify/display.htm"><code>inline-block</code> and <code>inline-table</code> values for the <code>display</code> declaration</a> have been implemented. I believe that Opera is the only browser to support the latter, while the former is more widespread — even IE7 supports it!</p>
<p>Potentially a big one, if I understand it correctly: the non-standard <a href="http://www.w3schools.com/tags/tag_script.asp">script object</a> is no longer supported. <a href="http://forums.mozillazine.org/viewtopic.php?t=533303&amp;start=30&amp;sid=74377cab17aff9a04cf92470c2e8b631">There seems to be some confusion over this</a>, but my interpretation is that <code>script</code> tags without the required <code>type</code> attribute will no longer work; that is, no more:</p>
<p><code>&lt;script language=“Javascript”&gt;&lt;/script&gt;</code></p>
<p>Also slightly nebulous is the news that the engine now supports <a href="http://www.whatwg.org/specs/web-apps/current-work/#link-type13">stylesheet switching</a> as per the WHATWG Wep Apps 1.0 proposal. As far as I can see, this allows you to define a number of alternate stylesheets with the <code>rel=“alternate stylesheet”</code> attribute; I’m a little confused as this has been implemented in Firefox for a while, but maybe it means it will be part of the engine from now on.</p>
<p>Other new features include: XML documents rendered as they download (instead of after they’ve downloaded), <a href="http://ejohn.org/blog/javascript-updates-in-firefox-30a3/">a whole load of DOM and Javascript updates</a>, lots more SVG support (although <a href="http://www.broken-links.com/2007/03/07/no-huge-svg-leaps-in-firefox-3/">not as much as I’d like</a>), and — as the voiceovers for multi-CD collections have it — many, many more.</p>
<p>You can <a href="http://www.mozilla.org/projects/firefox/3.0a3/releasenotes/#download">grab a copy of the Gecko 1.9 pre-release preview here</a>, although do bear in mind that this is alpha software, with all the risks inherent to that.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.broken-links.com/2007/03/28/new-features-in-gecko-19/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Five books that have helped me develop</title>
		<link>http://www.broken-links.com/2007/02/10/five-books-that-have-helped-me-develop/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=five-books-that-have-helped-me-develop</link>
		<comments>http://www.broken-links.com/2007/02/10/five-books-that-have-helped-me-develop/#comments</comments>
		<pubDate>Sat, 10 Feb 2007 16:40:57 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://www.claudiamassera.com/?p=13</guid>
		<description><![CDATA[I made my first forays into web development back in 1998, with my own Geocities homepage (now sadly defunct). It was after I developed my first ‘proper’ website (an unoffical guide to the FIFA Club World Championship 2000; please don’t laugh, this was eight years ago…) that I decided I wanted to be a professional [...]]]></description>
			<content:encoded><![CDATA[<p>I made my first forays into web development back in 1998, with my own Geocities homepage (now sadly defunct). It was after I developed my first ‘proper’ website (an unoffical guide to the <a href="http://users.arsenalfc.net/p_gasston/clubwrld/">FIFA Club World Championship 2000</a>; please don’t laugh, this was eight years ago…) that I decided I wanted to be a professional developer.</p>
<p>I’m mostly self-taught, but there’s no way I would have been able to make a career out of it — and keep interested in it — without the aid of the books below.</p>
<p>Please note: I’m not saying that these are necessarily the best books available, just that they have been — and continue to be — inspirational to me. OK, in no particular order…</p>
<p><span id="more-13"></span></p>
<ul>
<li>
<h5><a href="http://www.zeldman.com/dwws/">Designing With Web Standards</a>, by Jeffrey Zeldman</h5>
<p>Probably the daddy of them all. This book explains clearly and concisely the importance of maintaining standards and why the old tables-based websites should be phased out. Encouraged me to make the big shift from my old bad habits.</p>
<p>There’s a lot of theory in this book, and it’s probably only halfway through that the code examples begin to appear; but that doesn’t stop it from being an interesting read. Although <a href="http://www.456bereastreet.com/archive/200701/designing_with_web_standards_2nd_edition_book_review/">it’s apparently showing its age a little now</a>, much of the theory is still valid and I’d recommend this to any entry-level developers.</p>
</li>
<li>
<h5><a href="http://www.simplebits.com/publications/solutions/">Web Standards Solutions</a>, by Dan Cederholm</h5>
<p>After Zeldman’s book, I’d recommend this. It picks up the themes and runs with them, providing plenty of real-life coding examples, many of which I still use to this day. It covers all of the principal HTML elements we use day-to-day, and you’ll feel like an expert when you finish it.</p>
</li>
<li>
<h5><a href="http://domscripting.com/book/">DOM Scripting</a>, by Jeremy Keith</h5>
<p>When you’ve got your HTML and CSS up to scratch, this is an excellent introduction to adding enhancements to your pages, without unnecessary and intrusive code. Easy to follow examples will have you making  more interactive and dynamic pages in no time.</p>
</li>
<li>
<h5><a href="http://www.transcendingcss.com/">Transcending CSS</a>, by Andy Clarke</h5>
<p>My latest read, and a real treat. A beautifully designed and illustrated manifesto of progressive web design, based on a solid understanding of design and markup. Oversized and full colour throughout, it’s the closest thing yet to a web development coffee table book — but don’t think it’s just pretty, it’s also very useful.</p>
<p>I gave <a href="http://www.css3.info/transcending-css-a-new-web-essential/">a fuller review over at CSS3.info</a>, and I’m finding it more and more useful. I can’t wait to see what web pages look like in a year’s time when more people have read this.</p>
</li>
<li>
<h5><a href="http://www.oreilly.com/catalog/csspr2/">CSS Pocket Reference</a>, by Eric A. Meyer</h5>
<p>Last but by no means least, this is indispensable to me. Exactly what it says it is: a pocket-sized guide to CSS2.1 selectors. I carry this around with me always; after all, it’s hard to remember every single facet of CSS, and it’s a lot quicker than visiting <a href="http://www.w3schools.com/">W3Schools.com</a>, for example.</p>
<p>I can’t wait until there’s a CSS3 edition — at the very least, I’ll need to replace my battered and dog-eared copy soon.</p>
</li>
</ul>
<p>So, that’s my pick of the books that have helped me the most in my career to date. I’d love to hear of any recommendations to add to my library.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.broken-links.com/2007/02/10/five-books-that-have-helped-me-develop/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Good news on FF3 and IE.next</title>
		<link>http://www.broken-links.com/2007/02/04/good-news-on-ff3-and-ienext/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=good-news-on-ff3-and-ienext</link>
		<comments>http://www.broken-links.com/2007/02/04/good-news-on-ff3-and-ienext/#comments</comments>
		<pubDate>Sun, 04 Feb 2007 23:33:32 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[DOM]]></category>
		<category><![CDATA[browsers]]></category>

		<guid isPermaLink="false">http://www.claudiamassera.com/?p=9</guid>
		<description><![CDATA[Good news for DOM scripters: Firefox 3 is to support getElementsByClassName. Fingers crossed the other browsers follow suit soon, so we can stop using 20 lines of code where one will do. Good news for everyone: Microsoft look as if they’re taking web standards seriously. First came the news that standards guru Molly E. Holzschlag [...]]]></description>
			<content:encoded><![CDATA[<p>Good news for <abbr title="Document Object Model">DOM</abbr> scripters: <a href="http://ejohn.org/blog/getelementsbyclassname-in-firefox-3/">Firefox 3 is to support getElementsByClassName</a>. Fingers crossed the other browsers follow suit soon, so we can stop using <a href="http://www.robertnyman.com/2005/11/07/the-ultimate-getelementsbyclassname/">20 lines of code</a> where one will do.</p>
<p>Good news for everyone: Microsoft look as if they’re taking web standards seriously. First came the news that standards guru <a href="http://molly.com/">Molly E. Holzschlag</a> has <a href="http://blogs.msdn.com/ie/archive/2007/01/30/working-together-for-a-better-web.aspx">signed up to work on standards and interoperability for the next release of Internet Explorer</a>, then the <a href="http://www.webstandards.org/">Web Standards Group</a> announced that they <a href="http://www.webstandards.org/2007/02/04/talking-with-microsoft-about-ienext/">have had talks with the IE team about the five most-wanted features in IE</a>.</p>
<p>All positive news; very nice to report it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.broken-links.com/2007/02/04/good-news-on-ff3-and-ienext/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
