Problem: Applying $(".price").hide();
works to elements already rendered, however, when I load a new template via javascript, the price class will be visible.
Question: Is there a way to apply a style to all future instances of a class upon insertion into the DOM.
Example:
$(".price").hide();
$('body').append('<div class="price">19.00</div>'); // this should be hidden.