<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<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">
	<channel>
		<title>THE MOLITOR FORUMS &#187; Topic: IE8 bug - opening an item scrolls back to the beginning.</title>
		<link>http://www.themolitor.com/forums/topic/ie8-bug-opening-an-item-scrolls-back-to-the-beginning</link>
		<description>THE MOLITOR FORUMS &#187; Topic: IE8 bug - opening an item scrolls back to the beginning.</description>
		<language>en-US</language>
		<pubDate>Sat, 02 May 2026 23:50:42 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.themolitor.com/forums/search.php</link>
		</textInput>
		<atom:link href="http://www.themolitor.com/forums/rss/topic/ie8-bug-opening-an-item-scrolls-back-to-the-beginning" rel="self" type="application/rss+xml" />

		<item>
			<title>THE MOLITOR on "IE8 bug - opening an item scrolls back to the beginning."</title>
			<link>http://www.themolitor.com/forums/topic/ie8-bug-opening-an-item-scrolls-back-to-the-beginning#post-22345</link>
			<pubDate>Wed, 31 Jul 2013 12:20:44 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">22345@http://www.themolitor.com/forums/</guid>
			<description><p>[updated my last comment - forgot to copy/paste details prior to edit]
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "IE8 bug - opening an item scrolls back to the beginning."</title>
			<link>http://www.themolitor.com/forums/topic/ie8-bug-opening-an-item-scrolls-back-to-the-beginning#post-22344</link>
			<pubDate>Wed, 31 Jul 2013 12:19:26 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">22344@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>This is definitely an IE bug, which is particularly an annoying one. You're right, it's firing a resize event any time an element changes. Here's the fix...</p>
<p>Open up 'custom.js' and change the following on lines 445-448 from this...</p>
<pre><code>//WINDOW RESIZE ACTION
jQuery(window).resize(function(){
	jQuery(&#039;.referenceDivider&#039;).first().click();
});</code></pre>
<p>...to this...</p>
<pre><code>//WINDOW RESIZE ACTION
var winWidth = jQuery(window).width();

jQuery(window).resize(function(){
    //New width
    var winNewWidth = jQuery(window).width();

    // compare the new width with old one
    if(winWidth!=winNewWidth){
       	jQuery(&#039;.referenceDivider&#039;).first().click();
    }

    //Update the width
    winWidth = winNewWidth;
});</code></pre>
<p>Basically we're comparing the old and new width of the window and making sure there's actually a change occurring. The upside to this change is that vertical size changes in the window won't take you back to the beginning of the timeline, only horizontal size changes will. </p>
<p>Let me know if that works.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "IE8 bug - opening an item scrolls back to the beginning."</title>
			<link>http://www.themolitor.com/forums/topic/ie8-bug-opening-an-item-scrolls-back-to-the-beginning#post-22342</link>
			<pubDate>Wed, 31 Jul 2013 12:07:38 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">22342@http://www.themolitor.com/forums/</guid>
			<description><p>Thanks for the tip! Looking at this now...</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>bretjanak on "IE8 bug - opening an item scrolls back to the beginning."</title>
			<link>http://www.themolitor.com/forums/topic/ie8-bug-opening-an-item-scrolls-back-to-the-beginning#post-22325</link>
			<pubDate>Tue, 30 Jul 2013 15:26:03 +0000</pubDate>
			<dc:creator>bretjanak</dc:creator>
			<guid isPermaLink="false">22325@http://www.themolitor.com/forums/</guid>
			<description><p>Looks like a browser resize thing. IE8 seems to treat the resize of any element on the page as a resize, so line ~458 in custom.js needs some logic to prevent the trigger unless the window size actually does change.<br />
I've added something hacky. Will update with whatever you determine works the best once you've looked at it.
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "IE8 bug - opening an item scrolls back to the beginning."</title>
			<link>http://www.themolitor.com/forums/topic/ie8-bug-opening-an-item-scrolls-back-to-the-beginning#post-22322</link>
			<pubDate>Tue, 30 Jul 2013 13:07:24 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">22322@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>I tested the theme in IE8 mode using "standard" and "quirks" with no issues. I tried "IE8 standards" and low and behold I started seeing the issue you described. I'm not sure what the difference is between "standard" and "IE8 standard", so I'm not sure what the issue is.</p>
<p>I'll have to research this to see what I can find. For now I'll mark this thread "pending review".</p>
<p>Thanks for providing those details!</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>bretjanak on "IE8 bug - opening an item scrolls back to the beginning."</title>
			<link>http://www.themolitor.com/forums/topic/ie8-bug-opening-an-item-scrolls-back-to-the-beginning#post-22312</link>
			<pubDate>Mon, 29 Jul 2013 11:19:04 +0000</pubDate>
			<dc:creator>bretjanak</dc:creator>
			<guid isPermaLink="false">22312@http://www.themolitor.com/forums/</guid>
			<description><p>Device: every computer I sit down at.<br />
Seriously. they're mostly windows 7, they're all desktops, one is winXP. I've never seen the theme NOT manifest this scroll bug when I set the IE browser to IE8 mode.</p>
<p>Win7, IE9.0.8112.16421 in IE8 mode<br />
Win7, IE10.0.9200.16614 in IE8 mode<br />
Win7, IE10.0.9200.16635 in IE8 mode<br />
WinXP, IE 8.0.6001 (initial device on which this behavior was noticed)</p>
<p>Also, one of our vendors is seeing it on:<br />
IE 8.0.7601.17514  64-bit Edition, running on Windows 7 Enterprise (Service Pack 1)
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "IE8 bug - opening an item scrolls back to the beginning."</title>
			<link>http://www.themolitor.com/forums/topic/ie8-bug-opening-an-item-scrolls-back-to-the-beginning#post-22308</link>
			<pubDate>Mon, 29 Jul 2013 09:41:48 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">22308@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Can you provide exact details about the DEVICE and version of IE10 your using?</p>
<p>Thanks!</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>bretjanak on "IE8 bug - opening an item scrolls back to the beginning."</title>
			<link>http://www.themolitor.com/forums/topic/ie8-bug-opening-an-item-scrolls-back-to-the-beginning#post-22301</link>
			<pubDate>Sat, 27 Jul 2013 15:38:51 +0000</pubDate>
			<dc:creator>bretjanak</dc:creator>
			<guid isPermaLink="false">22301@http://www.themolitor.com/forums/</guid>
			<description><p>At home: IE9.0.8112.16421<br />
At work: IE10.something (will know on monday)
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "IE8 bug - opening an item scrolls back to the beginning."</title>
			<link>http://www.themolitor.com/forums/topic/ie8-bug-opening-an-item-scrolls-back-to-the-beginning#post-22297</link>
			<pubDate>Fri, 26 Jul 2013 13:45:50 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">22297@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>I tested that as well. No issues. Can you provide exact details about the device and version of IE10 your using?</p>
<p>Thanks!</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>bretjanak on "IE8 bug - opening an item scrolls back to the beginning."</title>
			<link>http://www.themolitor.com/forums/topic/ie8-bug-opening-an-item-scrolls-back-to-the-beginning#post-22294</link>
			<pubDate>Fri, 26 Jul 2013 12:57:18 +0000</pubDate>
			<dc:creator>bretjanak</dc:creator>
			<guid isPermaLink="false">22294@http://www.themolitor.com/forums/</guid>
			<description><p>Uh, perhaps there's a miscommunication. You say "the timeline stayed where it was when I click the title of a post.", but that's not where the problem lies. The problem occurs when a lightbox is opened (in the screenshots I posted, you can see the lightbox loading, while the tooltip shows the name of a post that's no longer on the screen because the timeline has scrolled back to the beginning)
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "IE8 bug - opening an item scrolls back to the beginning."</title>
			<link>http://www.themolitor.com/forums/topic/ie8-bug-opening-an-item-scrolls-back-to-the-beginning#post-22291</link>
			<pubDate>Fri, 26 Jul 2013 12:44:18 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">22291@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Can you provide exact details about the device and version of IE10 your using?</p>
<p>Thanks!</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>bretjanak on "IE8 bug - opening an item scrolls back to the beginning."</title>
			<link>http://www.themolitor.com/forums/topic/ie8-bug-opening-an-item-scrolls-back-to-the-beginning#post-22284</link>
			<pubDate>Fri, 26 Jul 2013 09:13:18 +0000</pubDate>
			<dc:creator>bretjanak</dc:creator>
			<guid isPermaLink="false">22284@http://www.themolitor.com/forums/</guid>
			<description><p>I've seen this bug on 3 different computers, one with IE9 and two with IE10, both using IE8 mode. The following screenshots show the behavior i'm seeing right after clicking.<br />
<a href="http://imgur.com/a/ivHpC" rel="nofollow">http://imgur.com/a/ivHpC</a>
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "IE8 bug - opening an item scrolls back to the beginning."</title>
			<link>http://www.themolitor.com/forums/topic/ie8-bug-opening-an-item-scrolls-back-to-the-beginning#post-22269</link>
			<pubDate>Thu, 25 Jul 2013 14:03:21 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">22269@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>I found an MS Surface and opened IE10 v10.0.9200.16384. I changed browser mode to IE8 and tested both Standards and Quirks and the timeline stayed where it was when I click the title of a post.</p>
<p>I also tested this on a virtual installation of Windows on my mac using IE8 in the IE Tester app and everything looked and functioned like it should.</p>
<p>Can you provide exact details about the device and version of IE10 your using?</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>bretjanak on "IE8 bug - opening an item scrolls back to the beginning."</title>
			<link>http://www.themolitor.com/forums/topic/ie8-bug-opening-an-item-scrolls-back-to-the-beginning#post-22261</link>
			<pubDate>Thu, 25 Jul 2013 10:57:40 +0000</pubDate>
			<dc:creator>bretjanak</dc:creator>
			<guid isPermaLink="false">22261@http://www.themolitor.com/forums/</guid>
			<description><p>We received a complaint from someone on our team about the behavior, so I opened ie10, and set it to ie8 mode (standards, not quirks), and it replicated the behavior I described.
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "IE8 bug - opening an item scrolls back to the beginning."</title>
			<link>http://www.themolitor.com/forums/topic/ie8-bug-opening-an-item-scrolls-back-to-the-beginning#post-22253</link>
			<pubDate>Thu, 25 Jul 2013 10:34:04 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">22253@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>I opened this up in IE8 and don't experience the same effect/issue. Please make sure your browser isn't in "compatibility mode" as that uses the IE7 browser engine instead of the IE8 engine.</p>
<p>Let me know.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>bretjanak on "IE8 bug - opening an item scrolls back to the beginning."</title>
			<link>http://www.themolitor.com/forums/topic/ie8-bug-opening-an-item-scrolls-back-to-the-beginning#post-22241</link>
			<pubDate>Wed, 24 Jul 2013 14:29:39 +0000</pubDate>
			<dc:creator>bretjanak</dc:creator>
			<guid isPermaLink="false">22241@http://www.themolitor.com/forums/</guid>
			<description><p>Thanks. Any progress on this? We're about to launch a site and would like to get this ironed out.
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "IE8 bug - opening an item scrolls back to the beginning."</title>
			<link>http://www.themolitor.com/forums/topic/ie8-bug-opening-an-item-scrolls-back-to-the-beginning#post-22212</link>
			<pubDate>Tue, 23 Jul 2013 11:42:25 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">22212@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>I'm not at my office computer today, so I can't check in IE8 right now (I'm on a mac laptop). I'll mark this as "pending review" so I can check it out when I get back.</p>
<p>Thanks!</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>bretjanak on "IE8 bug - opening an item scrolls back to the beginning."</title>
			<link>http://www.themolitor.com/forums/topic/ie8-bug-opening-an-item-scrolls-back-to-the-beginning#post-22202</link>
			<pubDate>Mon, 22 Jul 2013 12:16:03 +0000</pubDate>
			<dc:creator>bretjanak</dc:creator>
			<guid isPermaLink="false">22202@http://www.themolitor.com/forums/</guid>
			<description><p>Visit <a href="http://themes.themolitor.com/curator/" rel="nofollow">http://themes.themolitor.com/curator/</a> in an IE8 browser (or in IE 9+ in IE8 mode)<br />
scroll to the right, then pop open an item. Notice that the timeline scrolls back to the beginning.
</p></description>
		</item>

	</channel>
</rss>
