<?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: csshover.htc and IE freeze</title>
	<atom:link href="http://aplus.rs/adxmenudev/csshoverhtc-and-ie-freeze/feed/" rel="self" type="application/rss+xml" />
	<link>http://aplus.rs/adxmenudev/csshoverhtc-and-ie-freeze/</link>
	<description>aplus.rs</description>
	<lastBuildDate>Fri, 10 Feb 2012 23:35:40 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Richard</title>
		<link>http://aplus.rs/adxmenudev/csshoverhtc-and-ie-freeze/comment-page-1/#comment-199</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.aplus.co.yu/?p=62#comment-199</guid>
		<description>I&#039;m afraid i have another question perhaps a little obvious. I I am now putting together my site structure and dividing the files into the respective folders. I spent a long time yesterday trying to figure out where to place the WCH, ADxMenu and csshover files so that it works. I went over and over it, checking the behaviour and import references in the files, but i was not able to get it to work properley. I think there must be a rule that I am overlooking or perhaps a link reference to these files that I have not seen. Please could you give me a clue again. This seems to be the only obstacle standing between me and my site redesign. Thankyou again in advance.</description>
		<content:encoded><![CDATA[<p>I’m afraid i have another question perhaps a little obvious. I I am now putting together my site structure and dividing the files into the respective folders. I spent a long time yesterday trying to figure out where to place the WCH, ADxMenu and csshover files so that it works. I went over and over it, checking the behaviour and import references in the files, but i was not able to get it to work properley. I think there must be a rule that I am overlooking or perhaps a link reference to these files that I have not seen. Please could you give me a clue again. This seems to be the only obstacle standing between me and my site redesign. Thankyou again in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aleksandar</title>
		<link>http://aplus.rs/adxmenudev/csshoverhtc-and-ie-freeze/comment-page-1/#comment-200</link>
		<dc:creator>Aleksandar</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.aplus.co.yu/?p=62#comment-200</guid>
		<description>Links to both CSS and JS files should start from the calling document if you use relative paths. If you look at the source of any of my examples, you&#039;ll see I&#039;m using relative paths with lots of ../ in them. In CSS, you can use the same. Or you could use absolute paths and then you don&#039;t have to worry about page position in the directory hierarchy.

For example, my usual directory setup is like this:

&lt;pre&gt;
inc/css/
   /script/
&lt;/pre&gt;

CSS files (and csshover.htc) goes to css dir, while WCH.js and ADxMenu.js goes to script dir. 

So, in the menu.css (or whatever is called) I simply have 
&lt;code&gt;body: behavior:url(&quot;csshover.htc&quot;);&lt;/code&gt;
which is relative path to menu.css.

Other option is to move .htc file over to script dir, when both of these would work:
&lt;code&gt;body: behavior:url(&quot;../script/csshover.htc&quot;);&lt;/code&gt; - relative path
&lt;code&gt;body: behavior:url(&quot;/inc/script/csshover.htc&quot;);&lt;/code&gt; - absolute path
This is good if you have several menu.css files in different directories, so you can use the same csshover.htc for all of them.

Also, in all HTML files, I have (absolute paths):
&lt;code&gt;&lt;script type=&quot;text/javascript&quot; src=&quot;/inc/script/WCH.js&quot;&gt;&lt;/script&gt;&lt;/code&gt;
&lt;code&gt;&lt;script type=&quot;text/javascript&quot; src=&quot;/inc/script/ADxMenu.js&quot;&gt;&lt;/script&gt;&lt;/code&gt;
&lt;code&gt;&lt;style type=&quot;text/css&quot; media=&quot;screen&quot;&gt; @import url(/inc/css/menu.css); &lt;/style&gt;&lt;/code&gt;

I hope this helps.

The reason why examples use relative paths? I need them for downloadable archives (absolute paths does not work reliably without web server).</description>
		<content:encoded><![CDATA[<p>Links to both CSS and JS files should start from the calling document if you use relative paths. If you look at the source of any of my examples, you’ll see I’m using relative paths with lots of ../ in them. In CSS, you can use the same. Or you could use absolute paths and then you don’t have to worry about page position in the directory hierarchy.</p>
<p>For example, my usual directory setup is like this:</p>
<pre>
inc/css/
   /script/
</pre>
<p>CSS files (and csshover.htc) goes to css dir, while WCH.js and ADxMenu.js goes to script dir. </p>
<p>So, in the menu.css (or whatever is called) I simply have<br />
<code>body: behavior:url("csshover.htc");</code><br />
which is relative path to menu.css.</p>
<p>Other option is to move .htc file over to script dir, when both of these would work:<br />
<code>body: behavior:url("../script/csshover.htc");</code> — relative path<br />
<code>body: behavior:url("/inc/script/csshover.htc");</code> — absolute path<br />
This is good if you have several menu.css files in different directories, so you can use the same csshover.htc for all of them.</p>
<p>Also, in all HTML files, I have (absolute paths):<br />
<code>&lt;script type="text/javascript" src="/inc/script/WCH.js"&gt;&lt;/script&gt;</code><br />
<code>&lt;script type="text/javascript" src="/inc/script/ADxMenu.js"&gt;&lt;/script&gt;</code><br />
<code>&lt;style type="text/css" media="screen"&gt; @import url(/inc/css/menu.css); &lt;/style&gt;</code></p>
<p>I hope this helps.</p>
<p>The reason why examples use relative paths? I need them for downloadable archives (absolute paths does not work reliably without web server).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trevor Nelmes</title>
		<link>http://aplus.rs/adxmenudev/csshoverhtc-and-ie-freeze/comment-page-1/#comment-201</link>
		<dc:creator>Trevor Nelmes</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.aplus.co.yu/?p=62#comment-201</guid>
		<description>Hi

Only just found your menu. Wow! On the IE problem with behavior, have you tried putting it in the html tag instead of the body? IE treats the html style tag as the page root, not body.

On the IE5 problem. I know this sounds odd, but I was recently working on making an imageless CSS 3D menu system (single tier only), using nested divs and spans to make the &#039;image&#039; of a button. IF I used UL/LI&#039;s, IE 5 would NOT play ball. However, if I used DL/DD&#039;s, IE 5 (Win and Mac) were both happy. Indeed, whilst not very pretty, even IE4 rendered something close. Just for fun, you can see the sample menu&#039;s here (the css is inline, and it is valid xhtml1 strict):

http://207.44.137.103/stus_buttons.html




Trevor</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>Only just found your menu. Wow! On the IE problem with behavior, have you tried putting it in the html tag instead of the body? IE treats the html style tag as the page root, not body.</p>
<p>On the IE5 problem. I know this sounds odd, but I was recently working on making an imageless CSS 3D menu system (single tier only), using nested divs and spans to make the ‘image’ of a button. IF I used UL/LI’s, IE 5 would NOT play ball. However, if I used DL/DD’s, IE 5 (Win and Mac) were both happy. Indeed, whilst not very pretty, even IE4 rendered something close. Just for fun, you can see the sample menu’s here (the css is inline, and it is valid xhtml1 strict):</p>
<p><a href="http://207.44.137.103/stus_buttons.html" rel="nofollow">http://207.44.137.103/stus_buttons.html</a></p>
<p>Trevor</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aleksandar</title>
		<link>http://aplus.rs/adxmenudev/csshoverhtc-and-ie-freeze/comment-page-1/#comment-202</link>
		<dc:creator>Aleksandar</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.aplus.co.yu/?p=62#comment-202</guid>
		<description>Looks very good, Trevor. Went straight to bookmarks, for later disecting.

I did not try with HTML, as I was following the author&#039;s guidelines. Will try, as I have a perfect test case in one recent project. :)</description>
		<content:encoded><![CDATA[<p>Looks very good, Trevor. Went straight to bookmarks, for later disecting.</p>
<p>I did not try with HTML, as I was following the author’s guidelines. Will try, as I have a perfect test case in one recent project. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trevor Nelmes</title>
		<link>http://aplus.rs/adxmenudev/csshoverhtc-and-ie-freeze/comment-page-1/#comment-203</link>
		<dc:creator>Trevor Nelmes</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.aplus.co.yu/?p=62#comment-203</guid>
		<description>Hi Aleksandar

Just thought I&#039;d let you know, that demo page has moved to here:

http://209.216.241.33/stus_buttons.html




Trevor</description>
		<content:encoded><![CDATA[<p>Hi Aleksandar</p>
<p>Just thought I’d let you know, that demo page has moved to here:</p>
<p><a href="http://209.216.241.33/stus_buttons.html" rel="nofollow">http://209.216.241.33/stus_buttons.html</a></p>
<p>Trevor</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trevor Turk</title>
		<link>http://aplus.rs/adxmenudev/csshoverhtc-and-ie-freeze/comment-page-1/#comment-204</link>
		<dc:creator>Trevor Turk</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.aplus.co.yu/?p=62#comment-204</guid>
		<description>&lt;p&gt;I&#039;m trying to use this script for a dropdown menu, and I&#039;m having that freezing problem. I&#039;ve changed the script and removed the reference to the .htc file in the css. It doesn&#039;t work now, which I expected, but now I can&#039;t figure out what else to change. Can you clarify, please?&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>I’m trying to use this script for a dropdown menu, and I’m having that freezing problem. I’ve changed the script and removed the reference to the .htc file in the css. It doesn’t work now, which I expected, but now I can’t figure out what else to change. Can you clarify, please?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trevor Turk</title>
		<link>http://aplus.rs/adxmenudev/csshoverhtc-and-ie-freeze/comment-page-1/#comment-205</link>
		<dc:creator>Trevor Turk</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.aplus.co.yu/?p=62#comment-205</guid>
		<description>&lt;p&gt;I think I&#039;ve got it... I didn&#039;t inlcude thie additional bit of inline javascript that&#039;s in the example page. I also made sure to include the WCH file as well. Thanks for the great menus!&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>I think I’ve got it… I didn’t inlcude thie additional bit of inline javascript that’s in the example page. I also made sure to include the WCH file as well. Thanks for the great menus!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Hardy</title>
		<link>http://aplus.rs/adxmenudev/csshoverhtc-and-ie-freeze/comment-page-1/#comment-206</link>
		<dc:creator>Tim Hardy</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.aplus.co.yu/?p=62#comment-206</guid>
		<description>I&#039;m messing around with the pure CSS basic example of your menu and noticed an issue.  In IE, when you specify an alpha filter such as filter: alpha(opacity=80); -moz-opacity: 0.8; for the #menu li ul selector, the first menu to popup is translucent, but no more submenus popup.  Something stops working as far as popping up the submenus.  Everything works fine in Netscape.

Any thoughts?</description>
		<content:encoded><![CDATA[<p>I’m messing around with the pure CSS basic example of your menu and noticed an issue.  In IE, when you specify an alpha filter such as filter: alpha(opacity=80); –moz-opacity: 0.8; for the #menu li ul selector, the first menu to popup is translucent, but no more submenus popup.  Something stops working as far as popping up the submenus.  Everything works fine in Netscape.</p>
<p>Any thoughts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lai</title>
		<link>http://aplus.rs/adxmenudev/csshoverhtc-and-ie-freeze/comment-page-1/#comment-207</link>
		<dc:creator>Lai</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.aplus.co.yu/?p=62#comment-207</guid>
		<description>Hi,

I&#039;ve been using this nice menu of yours and came across a symptom with using it in IE. Dunno if this has any relation to those IE problems some of you have been having. If you do refreshes on the page and you also have task manager opened, you can see a memory leak in that browser process. The memory usage just keeps going up with each page refresh. It&#039;s also having some strange effect on the mouse hover as I&#039;ve an onclick event attached to the top menu element. I&#039;ve traced it down to a local variable oMenuLI in the function _ProcessMenu. I&#039;m not exactly sure why but it seems we have to set it to null before it exits _ProcessMenu for IE to release the memory resource. So much for IE&#039;s javascript engine :)</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I’ve been using this nice menu of yours and came across a symptom with using it in IE. Dunno if this has any relation to those IE problems some of you have been having. If you do refreshes on the page and you also have task manager opened, you can see a memory leak in that browser process. The memory usage just keeps going up with each page refresh. It’s also having some strange effect on the mouse hover as I’ve an onclick event attached to the top menu element. I’ve traced it down to a local variable oMenuLI in the function _ProcessMenu. I’m not exactly sure why but it seems we have to set it to null before it exits _ProcessMenu for IE to release the memory resource. So much for IE’s javascript engine :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)

Served from: aplus.rs @ 2012-05-17 17:52:20 -->
