I have a grid, column based, set as a constant sum. I am adding text after the numeric entry box and also need to add text before it. I know how to do this on a per row basis, but not sure how to write this to apply to all 101 rows that can come up.
This is what I have:
<script>
$(document).ready(function() {
$("#Q15_r1_c1").before("$");
});
</script>