I am generating some html
tables within a loop with dynamic class names. These classes look like:
<tr class="method_11">
<tr class="method_12">
<tr class="method_13">
Is there a way to select all of the above classes by only using their common parts
$('.method_options_1'+' ')
?