Problem: the second selector (with preceding id) does not work in IE7 w/1.4.2 (worked in 1.3.2)

First

w/o id ('input[type=hidden][name=ruleDto\\.operators\\[0\\]\\.operands\\[1\\]\\.value]')
test with 1.4.2 | test with 1.3.2 | test with 1.2.6

Second

w/id ('#one input[type=hidden][name=ruleDto\\.operators\\[0\\]\\.operands\\[1\\]\\.value]')
test with 1.4.2 | test with 1.3.2 | test with 1.2.6

Third

w/filter ('#one input:hidden').filter(function (idx) {return this.name === 'ruleDto.operators[0].operands[1].value';})
test with 1.4.2 | test with 1.3.2 | test with 1.2.6