IE8を使いだしてしばらくたった今、jQuery::cornerが動いていないことに気づいた。
jquery.corner.js内で
ds.setExpression('width', 'this.parentNode.offsetWidth');
となっているが、setExpressionはIE8ではなくなったとの事。
try {
ds.setExpression('width', 'this.parentNode.offsetWidth');
}
catch(err) {}
ds.setExpression('width', 'this.parentNode.offsetWidth');
}
catch(err) {}
として回避。