<?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>Alex Mauzon &#187; DOM</title>
	<atom:link href="http://mauzon.com/category/coding/dom/feed/" rel="self" type="application/rss+xml" />
	<link>http://mauzon.com</link>
	<description>Coding and programming tricks, ideas, notes: xHTML, CSS, JS etc</description>
	<lastBuildDate>Tue, 29 Sep 2009 20:49:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>An ultimate solution for IE6 position: fixed problem</title>
		<link>http://mauzon.com/an-ultimate-solution-for-ie6-position-fixed-problem/</link>
		<comments>http://mauzon.com/an-ultimate-solution-for-ie6-position-fixed-problem/#comments</comments>
		<pubDate>Wed, 26 Sep 2007 06:25:05 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.mauzon.com/?p=89</guid>
		<description><![CDATA[Most important (and complex) problem is to position some container in the vertical center of long page (with scroller) in IE6.
This is an ultimate solution (at least I think so) and I have to say HUGE THANKS to Vadim Makeev aka Pepelsbey for urgent and completely satisfactory help.
This is code fragment from working site and [...]]]></description>
		<wfw:commentRss>http://mauzon.com/an-ultimate-solution-for-ie6-position-fixed-problem/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to implement :first-child and directly nested children for IE6</title>
		<link>http://mauzon.com/first-child-and-directly-nested-children-for-ie6/</link>
		<comments>http://mauzon.com/first-child-and-directly-nested-children-for-ie6/#comments</comments>
		<pubDate>Wed, 26 Sep 2007 06:01:29 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.mauzon.com/?p=88</guid>
		<description><![CDATA[Correct CSS:

#someid div {color: blue;}
#someid div:first-child {color: red;}
#someid &#62; div {color: green;}
#someid div div {padding-left: 2em;}
/*
just to show some indend and separate direct children to nested ones
*/

IE6 CSS:

&#60;!--[if IE 6]&#62;
&#60;style type="text/css"&#62;
/*
FIRST CHILD AND NESTED CHILDRED:
1st one for :first-child
2nd one for all other directly nested childred
*/
#someid div {
&#160;&#160;color: expression(this.previousSibling == null ? 'red' : (this.parentNode.id == [...]]]></description>
		<wfw:commentRss>http://mauzon.com/first-child-and-directly-nested-children-for-ie6/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>Pseudoclasses :first-child and :last-child for IE6</title>
		<link>http://mauzon.com/pseudoclasses-first-child-and-last-child-for-ie6/</link>
		<comments>http://mauzon.com/pseudoclasses-first-child-and-last-child-for-ie6/#comments</comments>
		<pubDate>Wed, 01 Aug 2007 15:38:03 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.mauzon.com/?p=85</guid>
		<description><![CDATA[Regular CSS for FF, IE7, Opera, Safari:

#subnav li {background-color: green;}
#subnav li:first-child {background-color: red;}

CSS for IE 6 (using conditional comments):

&#60;!–-[if IE 6]&#62;
#subnav li {background-color: expression(this.previousSibling==null?'red':'green');}
&#60;![endif]--&#62;

Similar to :last-child
Instead of this.previousSibling==null there should be this.nextSibling==null
]]></description>
		<wfw:commentRss>http://mauzon.com/pseudoclasses-first-child-and-last-child-for-ie6/feed/</wfw:commentRss>
		<slash:comments>44</slash:comments>
		</item>
		<item>
		<title>Crash your IE6</title>
		<link>http://mauzon.com/crash-your-ie6/</link>
		<comments>http://mauzon.com/crash-your-ie6/#comments</comments>
		<pubDate>Wed, 30 May 2007 07:47:11 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.mauzon.com/?p=82</guid>
		<description><![CDATA[Do you want to crash your visitors IE6?
Add &#60;div id=&#34;tags&#34;&#62;anything&#60;/div&#62; to your page and suggest them to print it.
To avoid printing crash for IE6 just avoid id name tags
It seems it works (umm, crashes) to &#8220;native&#8221; IE6 and doesn&#8217;t work to IE6 within MultipleIE installation.
]]></description>
		<wfw:commentRss>http://mauzon.com/crash-your-ie6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Developer Toolbar &amp; Menu for Opera</title>
		<link>http://mauzon.com/web-developer-toolbar-menu-for-opera/</link>
		<comments>http://mauzon.com/web-developer-toolbar-menu-for-opera/#comments</comments>
		<pubDate>Fri, 12 May 2006 10:27:42 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.mauzon.com/?p=67</guid>
		<description><![CDATA[The web developer toolbar is a menu and toolbar setup for Opera which brings together functions related to web development, validation services and links to standards and other documentation.
Very useful tool.
Get web developer toolbar and menu for Opera
]]></description>
		<wfw:commentRss>http://mauzon.com/web-developer-toolbar-menu-for-opera/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All External URLs to new windows (Firefox canceling problem)</title>
		<link>http://mauzon.com/all-external-urls-to-new-windows/</link>
		<comments>http://mauzon.com/all-external-urls-to-new-windows/#comments</comments>
		<pubDate>Wed, 26 Apr 2006 16:08:38 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.mauzon.com/?p=66</guid>
		<description><![CDATA[The task is weird but it has some reason:
All external URLs should be opened in new windows with some JS confirm  (I don&#8217;t speak german so have no idea what real confirm text is).
So the idea is simple and transparent: Add events to all links where hostname is not equal to current (native) one.
Solution [...]]]></description>
		<wfw:commentRss>http://mauzon.com/all-external-urls-to-new-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>gobarz.com</title>
		<link>http://mauzon.com/gobarzcom/</link>
		<comments>http://mauzon.com/gobarzcom/#comments</comments>
		<pubDate>Thu, 09 Feb 2006 21:33:15 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.mauzon.com/?p=62</guid>
		<description><![CDATA[Actually, it creates you a link you can use on your website. Anyone who will click on it &#8211; will have your website bookmarked in his Google Toolbar. Also &#8211; you can add your RSS feed straight to the Google toolbar with the use of this tool.
It’s free, fast and fresh, and we did it [...]]]></description>
		<wfw:commentRss>http://mauzon.com/gobarzcom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yellow fade technique</title>
		<link>http://mauzon.com/yellow-fade-technique/</link>
		<comments>http://mauzon.com/yellow-fade-technique/#comments</comments>
		<pubDate>Tue, 20 Dec 2005 15:50:29 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.mauzon.com/?p=61</guid>
		<description><![CDATA[Yellow-fade technique for dummies: examples; scripts. Very useful. Direct link to best/simplest example (JavaScript example; FAQ) &#8211; It seems I should find some time to get it together to my favorite FAQ coding style.
]]></description>
		<wfw:commentRss>http://mauzon.com/yellow-fade-technique/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Mouseover DOM Inspector</title>
		<link>http://mauzon.com/the-mouseover-dom-inspector/</link>
		<comments>http://mauzon.com/the-mouseover-dom-inspector/#comments</comments>
		<pubDate>Mon, 29 Aug 2005 10:54:55 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.mauzon.com/?p=48</guid>
		<description><![CDATA[Full article

The Mouseover DOM Inspector, or MODI for short, is a favelet (also known as a bookmarklet) that allows you to view and manipulate the DOM of a web page simply by mousing around the document.
javascript:prefFile=&#8221;;void( z = document.body.appendChild(document.createElement(&#8217;script&#8217;))); void(z.language=&#8217;javascript&#8217;); void(z.type=&#8217;text/javascript&#8217;); void(z.src=&#8217;http://slayeroffice.com/tools/modi/v2.0/modi_v2.0.js&#8217;); void(z.id=&#8217;modi&#8217;);
Browsers currently supported are Firefox, Mozilla, Netscape 8, Opera 7.5+ and MSIE6+ on [...]]]></description>
		<wfw:commentRss>http://mauzon.com/the-mouseover-dom-inspector/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Almost best wysiwyg editor</title>
		<link>http://mauzon.com/almost-best-wysiwyg-editor/</link>
		<comments>http://mauzon.com/almost-best-wysiwyg-editor/#comments</comments>
		<pubDate>Sat, 26 Mar 2005 14:36:48 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://mauzon.com/?p=38</guid>
		<description><![CDATA[xStandard
XStandard is the leading standards-compliant plug-in WYSIWYG editor for Windows desktop applications and browser-based content management systems (IE/Mozilla/Firefox). The editor generates clean XHTML Strict or 1.1, uses CSS for formatting, and ensures the clean separation of content from presentation. Markup generated by XStandard meets the most demanding accessibility requirements.
]]></description>
		<wfw:commentRss>http://mauzon.com/almost-best-wysiwyg-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
