jQuery Find not working with HTML template – Shopify
I have a Shopify liquid I load into HTML Template <script type="text/template" id="description"> <div class="product-ddd"> {{ product.description }} </div> </script> <script> $("#description").each(function() { console.log($(this).html()); }); </script> For some reason, find is not working <script> $("#description").find('h4').each(function() { console.log($(this).html()); }); </script> This…