<?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: How to fix the resize event in IE</title>
	<atom:link href="http://noteslog.com/post/how-to-fix-the-resize-event-in-ie/feed/" rel="self" type="application/rss+xml" />
	<link>http://noteslog.com/post/how-to-fix-the-resize-event-in-ie/</link>
	<description></description>
	<lastBuildDate>Fri, 03 Feb 2012 08:18:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Shorty</title>
		<link>http://noteslog.com/post/how-to-fix-the-resize-event-in-ie/comment-page-3/#comment-86077</link>
		<dc:creator>Shorty</dc:creator>
		<pubDate>Fri, 16 Dec 2011 03:19:59 +0000</pubDate>
		<guid isPermaLink="false">http://noteslog.com/post/how-to-fix-the-resize-event-in-ie/#comment-86077</guid>
		<description>An answer from an eerxpt! Thanks for contributing.</description>
		<content:encoded><![CDATA[<p>An answer from an eerxpt! Thanks for contributing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrea Ercolino</title>
		<link>http://noteslog.com/post/how-to-fix-the-resize-event-in-ie/comment-page-3/#comment-71765</link>
		<dc:creator>Andrea Ercolino</dc:creator>
		<pubDate>Sat, 27 Aug 2011 12:35:11 +0000</pubDate>
		<guid isPermaLink="false">http://noteslog.com/post/how-to-fix-the-resize-event-in-ie/#comment-71765</guid>
		<description>@Art Unfortunately I have not any more a Windows PC to update this plugin. If you can provide an update yourself I&#039;ll be pleased to publish it here or link from here to your blog. Thanks.</description>
		<content:encoded><![CDATA[<p>@Art Unfortunately I have not any more a Windows PC to update this plugin. If you can provide an update yourself I&#8217;ll be pleased to publish it here or link from here to your blog. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Art</title>
		<link>http://noteslog.com/post/how-to-fix-the-resize-event-in-ie/comment-page-2/#comment-71687</link>
		<dc:creator>Art</dc:creator>
		<pubDate>Fri, 26 Aug 2011 13:58:37 +0000</pubDate>
		<guid isPermaLink="false">http://noteslog.com/post/how-to-fix-the-resize-event-in-ie/#comment-71687</guid>
		<description>Hello,
I did exactly as in your example but in IE8 the function in wresize event is called incrementally on and on.</description>
		<content:encoded><![CDATA[<p>Hello,<br />
I did exactly as in your example but in IE8 the function in wresize event is called incrementally on and on.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Renuka</title>
		<link>http://noteslog.com/post/how-to-fix-the-resize-event-in-ie/comment-page-2/#comment-60100</link>
		<dc:creator>Renuka</dc:creator>
		<pubDate>Mon, 11 Apr 2011 19:54:28 +0000</pubDate>
		<guid isPermaLink="false">http://noteslog.com/post/how-to-fix-the-resize-event-in-ie/#comment-60100</guid>
		<description>Thanks for your code. It helps me a lot.</description>
		<content:encoded><![CDATA[<p>Thanks for your code. It helps me a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert D. Cluett</title>
		<link>http://noteslog.com/post/how-to-fix-the-resize-event-in-ie/comment-page-2/#comment-48693</link>
		<dc:creator>Robert D. Cluett</dc:creator>
		<pubDate>Wed, 13 Oct 2010 01:43:57 +0000</pubDate>
		<guid isPermaLink="false">http://noteslog.com/post/how-to-fix-the-resize-event-in-ie/#comment-48693</guid>
		<description>Pretty much had the same solution...

var dashboard = {

   ieresizeTimer : null,
	
   setSizeWrapper : function() 
   {
      if (client.isIE)
      {
         $(&#039;resizemask&#039;).style.display = &#039;block&#039;;
	clearTimeout(dashboard.ieresizeTimer);
	dashboard.ieresizeTimer = setTimeout(&quot;dashboard.setSize()&quot;,100);	
   }
   else
   {
      dashboard.setSize();
   }
},
	
setSize : function() 
{
   // resize code here
}</description>
		<content:encoded><![CDATA[<p>Pretty much had the same solution&#8230;</p>
<p>var dashboard = {</p>
<p>   ieresizeTimer : null,</p>
<p>   setSizeWrapper : function()<br />
   {<br />
      if (client.isIE)<br />
      {<br />
         $(&#8216;resizemask&#8217;).style.display = &#8216;block&#8217;;<br />
	clearTimeout(dashboard.ieresizeTimer);<br />
	dashboard.ieresizeTimer = setTimeout(&#8220;dashboard.setSize()&#8221;,100);<br />
   }<br />
   else<br />
   {<br />
      dashboard.setSize();<br />
   }<br />
},</p>
<p>setSize : function()<br />
{<br />
   // resize code here<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrea Ercolino</title>
		<link>http://noteslog.com/post/how-to-fix-the-resize-event-in-ie/comment-page-2/#comment-48647</link>
		<dc:creator>Andrea Ercolino</dc:creator>
		<pubDate>Thu, 07 Oct 2010 06:29:37 +0000</pubDate>
		<guid isPermaLink="false">http://noteslog.com/post/how-to-fix-the-resize-event-in-ie/#comment-48647</guid>
		<description>@Steve, many thanks. There was something wrong with my post template, still to understand what exactly, but I could fix it.</description>
		<content:encoded><![CDATA[<p>@Steve, many thanks. There was something wrong with my post template, still to understand what exactly, but I could fix it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://noteslog.com/post/how-to-fix-the-resize-event-in-ie/comment-page-2/#comment-48638</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Wed, 06 Oct 2010 17:58:23 +0000</pubDate>
		<guid isPermaLink="false">http://noteslog.com/post/how-to-fix-the-resize-event-in-ie/#comment-48638</guid>
		<description>It seems that you have turned overflow on this site to hidden or somehow turned off scrollbars. Looking at this in Chrome 6. Thanks for the post.</description>
		<content:encoded><![CDATA[<p>It seems that you have turned overflow on this site to hidden or somehow turned off scrollbars. Looking at this in Chrome 6. Thanks for the post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tchat</title>
		<link>http://noteslog.com/post/how-to-fix-the-resize-event-in-ie/comment-page-2/#comment-48416</link>
		<dc:creator>Tchat</dc:creator>
		<pubDate>Thu, 30 Sep 2010 12:50:06 +0000</pubDate>
		<guid isPermaLink="false">http://noteslog.com/post/how-to-fix-the-resize-event-in-ie/#comment-48416</guid>
		<description>Thank you for work :-)</description>
		<content:encoded><![CDATA[<p>Thank you for work :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ron C</title>
		<link>http://noteslog.com/post/how-to-fix-the-resize-event-in-ie/comment-page-2/#comment-45798</link>
		<dc:creator>Ron C</dc:creator>
		<pubDate>Thu, 03 Jun 2010 02:39:30 +0000</pubDate>
		<guid isPermaLink="false">http://noteslog.com/post/how-to-fix-the-resize-event-in-ie/#comment-45798</guid>
		<description>I&#039;m seeing another IE8 quirk with resize. The HTML page has no width set and uses the jQuery scroll with a timer as above to reposition an absolute DIV if it has gone off-screen.

Under IE8, when the window is reduced in width, IE briefly inserts a horizontal scroll bar (reducing the height). It appears to then send separate resize events for the reduction in width and height, then another appreciably later for the increase in height when it removes the horizontal scroll bar it just added! This does not happen under Firefox, Safari, nor Chrome.

I can increase the delay started the resize events to mask this. About 500mS does the trick on my test machine, but have doubt that will work on a broad spectrum of machines. It also makes the app look a bit unresponsive, though it&#039;s better than seeing the div glide in from the right, then drop down from the top under IE.

Grrr.</description>
		<content:encoded><![CDATA[<p>I&#8217;m seeing another IE8 quirk with resize. The HTML page has no width set and uses the jQuery scroll with a timer as above to reposition an absolute DIV if it has gone off-screen.</p>
<p>Under IE8, when the window is reduced in width, IE briefly inserts a horizontal scroll bar (reducing the height). It appears to then send separate resize events for the reduction in width and height, then another appreciably later for the increase in height when it removes the horizontal scroll bar it just added! This does not happen under Firefox, Safari, nor Chrome.</p>
<p>I can increase the delay started the resize events to mask this. About 500mS does the trick on my test machine, but have doubt that will work on a broad spectrum of machines. It also makes the app look a bit unresponsive, though it&#8217;s better than seeing the div glide in from the right, then drop down from the top under IE.</p>
<p>Grrr.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: estetik</title>
		<link>http://noteslog.com/post/how-to-fix-the-resize-event-in-ie/comment-page-2/#comment-44896</link>
		<dc:creator>estetik</dc:creator>
		<pubDate>Sat, 24 Apr 2010 15:13:47 +0000</pubDate>
		<guid isPermaLink="false">http://noteslog.com/post/how-to-fix-the-resize-event-in-ie/#comment-44896</guid>
		<description>very good article thanks admin for the post</description>
		<content:encoded><![CDATA[<p>very good article thanks admin for the post</p>
]]></content:encoded>
	</item>
</channel>
</rss>

