jQuery Easy Accordion plugin not working in Internet Explorer -
i'm using easy accordion plugin (source = http://www.madeincima.it/en/articles/resources-and-tools/easy-accordion-plugin/) on site , it's not functioning in ie (any version).
the issue rotation of dt element, i'm using filter:progid:dximagetransform.microsoft.basicimage(rotation=3)
in css rotation , according web developer tools in ie it's rotating dt container not contents.
no idea how fix, tried stripping plugin down , using demo provided on source page, same result. can see result here - www.glosnut.co.uk
plugin supposed function fine in ie, it's working fine in firefox , chrome.
any suggestions?
you use vendor prefixes firefox , webkit transform
, transform-origin
properties (and perhaps more). stops working in ie9+ , opera.
you should add -o- (older opera), -ms- (ie9) , prefixless versions (modern ie, opera, , firefox).
.easy-accordion dt { -webkit-transform: rotate(-90deg); -moz-transform: rotate(-90deg); -ms-transform: rotate(-90deg); -o-transform: rotate(-90deg); transform: rotate(-90deg); }
there possibly other prefixes need add too. i've not looked ie8 , below. how far need support?
if these rules come plug-in itself, not future friendly or coded, i’d recommend more date plugin.
Comments
Post a Comment