There is no such a "getElementsByClass" function in javascript,
then how does jQuery manage to do that?
Looping all elements will be too less efficient.
BTW,how to specify css to elements with two or more classes?
<a class="one two">test</a>
Guessing like below?
.one.two {...}
Is that right?