I may explained bad, but I didn’t know how to describe that, anyway..
I have this var:
var d_atributo=$("div.atributo");
There’s anyway to do select an element child of the mentioned this way?
d_atributo.$(" span.example).click(function(){...});
I mean that I want to use this var and extend his “definition” on the fly.
No. You can’t do it in your way with default jQuery selector.
You can do:
OR
OR