-
Notifications
You must be signed in to change notification settings - Fork 800
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
border styles not removed in IE8 #10
Comments
Thanks. The script doesn't use any I've tested the demo again in IE8 (emulation mode), but it seems to be fine, could this only be in the real IE8 browser only? Could it be a jQuery version issue? |
yes. specifically i meant this part. // revert the temporary forced style BTW, looks fine to me, but you know how IE8 is... i also tested in IE9 and was able to reproduce the issue when using IE8 "document mode". IE8 "browser mode" did not reproduce. i have included a screenshot. i guess we can rule out jquery version issue, as i was using your full package with its version of jquery. |
Ok so, turns out that there's specifically bugs with that approach in < IE8: @Runeform for now, I think you should modify your copy to use the I still need to think if that is appropriate to roll into the plugin myself though, since I'd rather not just remove the whole inline style attribute (in case other plugins are using it). |
wouldnt that remove the height that matchHeight places on the object? or does all that happen before the height is applied? |
Yep that happens before the height is applied (see these lines), so should be fine. That part of the code is preparation for finding rows. |
actually i just found a work around
since its not setting the additional properties of "border" it does leave the border style and color behind and removes successfully |
*it does 'not' leave... |
Ah, looks like that might do the trick. I'll try that out and push it if it works, thanks. EDIT: tested working fine, cheers |
hey there. first off, i love the script. the row aware feature is amazing especially for responsive sites.
i am having a strange issue however. in IE8 i am getting the following inline styles on my matchHeight elements.
border-top: medium none;
border-bottom: medium none;
it seems .css("border-bottom",""); is not doing its job in IE8 for some reason. I will look into it, but just wanted to let you know.
The text was updated successfully, but these errors were encountered: