tarmo
tarmo

Reputation: 108

YUI3 selector problem in ie8

Y.one('form fieldset:nth-child(2)').toggleClass('hide');

in chrome, FF, opera this line works but in ie6-8 it throws an error 'Y.one(...)' is null or not an object.

where is the problem?

Upvotes: 3

Views: 923

Answers (1)

Tivac
Tivac

Reputation: 2573

Have to add the "selector-css3" module to your .use() statement if you want to use CSS3 selectors in browsers that don't support them natively.

Upvotes: 4

Related Questions