<?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; JavaScript</title>
	<atom:link href="http://mauzon.com/category/coding/javascript/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>Simplest Classname Switcher</title>
		<link>http://mauzon.com/simple_classname_switcher/</link>
		<comments>http://mauzon.com/simple_classname_switcher/#comments</comments>
		<pubDate>Tue, 29 May 2007 09:12:17 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.mauzon.com/?p=81</guid>
		<description><![CDATA[Simplest JS function to add/remove custom classname with carrying about another classes.
just to remember.


function toggleClassName(obj,sClassName,switcher){
	if(switcher){
		if(obj.className.indexOf(sClassName)==-1)
			obj.className=obj.className + ' ' + sClassName;
	}else{
		var re = new RegExp(sClassName,'g');
		obj.className=obj.className.replace(re,'');
	}
}

sapienti sat
]]></description>
		<wfw:commentRss>http://mauzon.com/simple_classname_switcher/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Vertical alignment: height and IE7</title>
		<link>http://mauzon.com/vertical-alignment-height-and-ie7/</link>
		<comments>http://mauzon.com/vertical-alignment-height-and-ie7/#comments</comments>
		<pubDate>Wed, 25 Oct 2006 20:43:27 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.mauzon.com/?p=78</guid>
		<description><![CDATA[There is no brand new subject, really.
even 2 old articles (Vertical centering using CSS and CSS Vertical Centering again)  from this blog.
2 problems:
1) Small height: if browser height is smaller than main container (for all browsers):

function adjustHeight(){
&#160;&#160;&#160;if(document.body.offsetHeight &#62; 450){
&#160;&#160;&#160;&#160;&#160;&#160;document.body.style.height='100'+'%';
&#160;&#160;&#160;}else{
&#160;&#160;&#160;&#160;&#160;&#160;document.body.style.height='450px';
&#160;&#160;&#160;}
}
onload and onresize, of course.
2) IE7: this rule:
#ContainerDiv {position: relative; top: -50%;}
moves the #ContainerDiv above the [...]]]></description>
		<wfw:commentRss>http://mauzon.com/vertical-alignment-height-and-ie7/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>onmouseout IE flickering problem</title>
		<link>http://mauzon.com/onmouseout-ie-flickering-problem/</link>
		<comments>http://mauzon.com/onmouseout-ie-flickering-problem/#comments</comments>
		<pubDate>Sun, 03 Sep 2006 14:07:14 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.mauzon.com/?p=74</guid>
		<description><![CDATA[As we all know there is a problem for :hover pseudoclass for Microsoft Internet Explorer.
There are many solutions (eg csshover.htc) but all of them have one big and ugly problem: MS IE flickering on mouseout event.
I mean when you move your mouse WITHIN the object but over some child nodes mouse doesn&#8217;t leave the HOVERED [...]]]></description>
		<wfw:commentRss>http://mauzon.com/onmouseout-ie-flickering-problem/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>event:Selectors library</title>
		<link>http://mauzon.com/eventselectors-library/</link>
		<comments>http://mauzon.com/eventselectors-library/#comments</comments>
		<pubDate>Sat, 02 Sep 2006 23:50:36 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.mauzon.com/?p=73</guid>
		<description><![CDATA[event:Selectors allow you to apply an event such as mouseover, mouseout, click, et al using a CSS style syntax. It keeps your layers separated and greatly reduces the amount of code you have to write.
event:Selectors library
]]></description>
		<wfw:commentRss>http://mauzon.com/eventselectors-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS: position: fixed; for IE (Internet Explorer)</title>
		<link>http://mauzon.com/css-position-fixed-for-ie-internet-explorer/</link>
		<comments>http://mauzon.com/css-position-fixed-for-ie-internet-explorer/#comments</comments>
		<pubDate>Tue, 22 Aug 2006 11:01:11 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.mauzon.com/?p=72</guid>
		<description><![CDATA[position: fixed; is basically the same as position: absolute; except that when the user scrolls the page, the element does not scroll with it, it just says exactly where it was. There are many pages that want to use this in order to position logos or menus.
full article/source
Solution:


CSS:
#fixme {
  /* Netscape 4, IE 4.x-5.0/Win [...]]]></description>
		<wfw:commentRss>http://mauzon.com/css-position-fixed-for-ie-internet-explorer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Several good JavaScript links</title>
		<link>http://mauzon.com/several-good-javascript-sites/</link>
		<comments>http://mauzon.com/several-good-javascript-sites/#comments</comments>
		<pubDate>Sun, 20 Aug 2006 08:40:43 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.mauzon.com/?p=70</guid>
		<description><![CDATA[The Javascript weblog: Putting the &#8220;D&#8221; in DHTML, just a blog but with really cool things.
Some links from there: 
Whalesalad Dock Prototype:
The plan is to be able to mouseover the top area of the browser window, and have a nice and pretty (semi-transparent) dock fade down.
Using Opera to debug IE javascript errors: 
In short, use [...]]]></description>
		<wfw:commentRss>http://mauzon.com/several-good-javascript-sites/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>
	</channel>
</rss>
