Something like get an variable out of class.
ParentElement.someId.someId..
If i have something like that in css:
#someId #aaa #bbb
{
...
}
#someOtherId #aaa #bbb
{
...
}
and i want to get only the element under "#someId". Something like
getElementById("someId aaa bbb");
would be great, unfortunately this one doesn't work.
Any ideas?