Jump to content

Either IE is dumb, or I am


maxxd

Recommended Posts

Hey y'all.

 

I've got the following code:

$(window).scroll(function(){
	if($(window).width() > 640){
		$('#bg').css({top:$(this).scrollTop()});
	}
	if($(window).width() > 981){
		$('.switch').css({top:$(this).scrollTop() + 75});//75 pixels is the top-offset of the element in the style sheet
	}
});

In Firefox, Chrome, Safari, Opera, and Chrome Canary on osX and Firefox, Chrome, and Opera on Windows the div 'bg' stays pinned to the top of the browser window when I scroll. Exactly as intended. Unfortunately, in IE, the div scrolls downwards (against the mouse scroll). But, the 'switch' div stays put - just like it should! It's acting as if the scrollTop() call is returning negative numbers, despite the fact that it's not (I've logged to console and everything looks fine) and it's only doing it in the first conditional. If I change $(this).scrollTop() to a flat 0, it works in IE but nowhere else.

 

I'm starting to doubt my own sanity. Can anyone come up with a reason I might be seeing this behavior?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.