Below, how should I select the elements that contain the class my_class within the element with id = \"my_id\"?
my_class
id = \"my_id\"
Note that the element may
I think your asking to select only hello this element, You have do like this, If I am understand your question correctly this is the answer,
hello
$("#my_id [class='my_class']").addClass('test');
DEMO