I want to add div after another div with class="col-md-12 col-sm-6 stm-filter_transmission". How should I do that?
This is not working:
<script>
$(function (){ 
    $( ".col-md-12 col-sm-6 stm-filter_transmission" ).after( "<p>Test</p>" );
}); 
</script>
