<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: onMouseOut fix on nested elements &#8211; JavaScript</title>
	<atom:link href="http://codingrecipes.com/onmouseout-fix-on-nested-elements-javascript/feed" rel="self" type="application/rss+xml" />
	<link>http://codingrecipes.com/onmouseout-fix-on-nested-elements-javascript</link>
	<description></description>
	<lastBuildDate>Sun, 22 Jan 2012 07:31:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
	<item>
		<title>By: okyo</title>
		<link>http://codingrecipes.com/onmouseout-fix-on-nested-elements-javascript/comment-page-1#comment-4007</link>
		<dc:creator>okyo</dc:creator>
		<pubDate>Thu, 29 Dec 2011 02:44:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=792#comment-4007</guid>
		<description>damn you saved me</description>
		<content:encoded><![CDATA[<p>damn you saved me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tuong</title>
		<link>http://codingrecipes.com/onmouseout-fix-on-nested-elements-javascript/comment-page-1#comment-3993</link>
		<dc:creator>Tuong</dc:creator>
		<pubDate>Sun, 11 Dec 2011 18:21:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=792#comment-3993</guid>
		<description>Thank U! nice simple script!</description>
		<content:encoded><![CDATA[<p>Thank U! nice simple script!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Orlando Cano</title>
		<link>http://codingrecipes.com/onmouseout-fix-on-nested-elements-javascript/comment-page-1#comment-2770</link>
		<dc:creator>Orlando Cano</dc:creator>
		<pubDate>Tue, 20 Sep 2011 18:32:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=792#comment-2770</guid>
		<description>Hey brother..!!!

Thank you very much.!!
Your code really works to one hundred and ten percent, i needed this fix..

Great.!!
:)</description>
		<content:encoded><![CDATA[<p>Hey brother..!!!</p>
<p>Thank you very much.!!<br />
Your code really works to one hundred and ten percent, i needed this fix..</p>
<p>Great.!!<br />
 <img src='http://codingrecipes.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dyte</title>
		<link>http://codingrecipes.com/onmouseout-fix-on-nested-elements-javascript/comment-page-1#comment-2659</link>
		<dc:creator>Dyte</dc:creator>
		<pubDate>Thu, 04 Aug 2011 09:05:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=792#comment-2659</guid>
		<description>Wonderful, just what I needed. Thanks.</description>
		<content:encoded><![CDATA[<p>Wonderful, just what I needed. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arthur</title>
		<link>http://codingrecipes.com/onmouseout-fix-on-nested-elements-javascript/comment-page-1#comment-2473</link>
		<dc:creator>Arthur</dc:creator>
		<pubDate>Sun, 24 Jul 2011 19:55:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=792#comment-2473</guid>
		<description>Thanks man!</description>
		<content:encoded><![CDATA[<p>Thanks man!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://codingrecipes.com/onmouseout-fix-on-nested-elements-javascript/comment-page-1#comment-2208</link>
		<dc:creator>David</dc:creator>
		<pubDate>Mon, 11 Jul 2011 14:15:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=792#comment-2208</guid>
		<description>thank you, thank you, thank you!! was struggling for hours with this problem, your code is the first that solves it perfectly!</description>
		<content:encoded><![CDATA[<p>thank you, thank you, thank you!! was struggling for hours with this problem, your code is the first that solves it perfectly!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fred</title>
		<link>http://codingrecipes.com/onmouseout-fix-on-nested-elements-javascript/comment-page-1#comment-2118</link>
		<dc:creator>Fred</dc:creator>
		<pubDate>Wed, 06 Jul 2011 10:04:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=792#comment-2118</guid>
		<description>In a word -&gt; Thanks!</description>
		<content:encoded><![CDATA[<p>In a word -&gt; Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yuji</title>
		<link>http://codingrecipes.com/onmouseout-fix-on-nested-elements-javascript/comment-page-1#comment-2089</link>
		<dc:creator>Yuji</dc:creator>
		<pubDate>Fri, 24 Jun 2011 03:00:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=792#comment-2089</guid>
		<description>Hi,
Thank for your code. It is still helpful for browsers except for IE.

I changed your code just a little bit because I want to use a function rather than code text as dispatch routine.

1. function definition
function fixOnMouseOut(element, event, JavaScript_code)
=&gt;
function fixOnMouseOut(element, event, eventHandler)

2. evaluate dispatch
eval(JavaScript_code);
=&gt;
eventHandler(event);

It works well for me (Safari).
How can I treat your header comments?</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Thank for your code. It is still helpful for browsers except for IE.</p>
<p>I changed your code just a little bit because I want to use a function rather than code text as dispatch routine.</p>
<p>1. function definition<br />
function fixOnMouseOut(element, event, JavaScript_code)<br />
=&gt;<br />
function fixOnMouseOut(element, event, eventHandler)</p>
<p>2. evaluate dispatch<br />
eval(JavaScript_code);<br />
=&gt;<br />
eventHandler(event);</p>
<p>It works well for me (Safari).<br />
How can I treat your header comments?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Codehead</title>
		<link>http://codingrecipes.com/onmouseout-fix-on-nested-elements-javascript/comment-page-1#comment-2036</link>
		<dc:creator>Codehead</dc:creator>
		<pubDate>Tue, 31 May 2011 06:43:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=792#comment-2036</guid>
		<description>Hi Kyle, thanks for the comment, this post is 4 years old, this was one of my forum posts on my old forums that I got rid of around 2 years ago...</description>
		<content:encoded><![CDATA[<p>Hi Kyle, thanks for the comment, this post is 4 years old, this was one of my forum posts on my old forums that I got rid of around 2 years ago&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kyle</title>
		<link>http://codingrecipes.com/onmouseout-fix-on-nested-elements-javascript/comment-page-1#comment-2035</link>
		<dc:creator>Kyle</dc:creator>
		<pubDate>Tue, 31 May 2011 03:44:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=792#comment-2035</guid>
		<description>Hello,

I saw this and it seemed like overkill, so I looked for something else.

It turns out that you can use onmouseenter and onmouseleave instead of onmouseover and onmouseout. Problem solved.

P.S I can&#039;t see a single date except for &quot;copyright 2011&quot; at the bottom, so I&#039;m hoping this post isn&#039;t 7 years old or something.</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I saw this and it seemed like overkill, so I looked for something else.</p>
<p>It turns out that you can use onmouseenter and onmouseleave instead of onmouseover and onmouseout. Problem solved.</p>
<p>P.S I can&#8217;t see a single date except for &#8220;copyright 2011&#8243; at the bottom, so I&#8217;m hoping this post isn&#8217;t 7 years old or something.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

