-
Notifications
You must be signed in to change notification settings - Fork 516
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IE8 - doesn't unstick at bottom of parent #48
Comments
Same problem here. |
For anyone who really needs IE support and can't wait for a fix, I've had good success with https://github.com/davist11/jQuery-Stickem |
Hi Guys, Make the following change to fix: (around line 64) I'm not sure how to request this get added in as a fix. |
I have the same problem. Another fix might be changing border_top = parseInt(parent.css("border-top-width"), 10); to border_top = parseInt(parent.css("border-top-width"), 10) || 0; However this isn't 100% correct because in IE8 A simple workaround for this bug is just to add this to your CSS: * {
border-top-width: 0;
} |
The sticky element doesn't unstick at bottom of parent element and maintains position:fixed in IE8.
The text was updated successfully, but these errors were encountered: