What is the correct syntax for targeting a class which is a child element of an element with an id that includes a variable.
Without the var it works:
$( "#parent_el .child-class" )
What's the correct syntax if you add a variable, like so?
$( "#parent_el_" + uniqueIdForParent .child-class )