Question

I am using Mootools 1.2.4 and IE 9. Mootools class selector does not work in IE 9(the following commands). It cannot find the input elements with class="selector".

js code:

$('indvNameId').getElements('.selector');

html

<input type="text" class="others selector" ..../>
<input ... />

Can anyone confirm this?

Was it helpful?

Solution

Do not know the reasons but $$ works for me.

it works if I use

$$('.selector')

instead of

$('indvNameId').getElements('.selector');
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top