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
Also $( "#container" ).find( "div.robotarm" ); is equal to: $( "div.robotarm", "#container" )
$( "#container" ).find( "div.robotarm" );
$( "div.robotarm", "#container" )