Side navigation
#1772 closed bug (fixed)
Opened October 04, 2007 11:27AM UTC
Closed January 24, 2008 07:03PM UTC
accordion/dimensions - Object doesn't support this property or method in IE6/7
Reported by: | catch | Owned by: | joern |
---|---|---|---|
Priority: | major | Milestone: | 1.2.2 |
Component: | ui | Version: | 1.2.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I've been using jquery 2.1, ui.accordion.js and jquery.dimensions.js - everything works fine in firefox, but in IE6/7 I get
Object doesn't support this property or method on line 169 when I click on an accordion tab - the tab moves but there's a lot of flicker. I'm assuming this is referring to jquery.dimensions.js, in which case it's the show part of:
$.ui.accordion.animations[settings.animated]({
toShow: toShow,
toHide: toHide,
finished: finished,
down: down
});
I'm using this to define the accordion (unordered list):
$(document).ready(function(){
$("#flags") .accordion({
header: 'a.language',
event: 'click'
});
});