skip to Main Content

Insert liquid tag into js file – Shopify

I'm trying to add {{ product.variants.first.sku }} into a js file, the function is below function buildPrice(data, onSale, priceVaries) { var priceHtml = '', onSaleClass = onSale ? ' price--on-sale' : ''; var productSku = "{{ product.variants.first.sku }}"; priceHtml +=…

VIEW QUESTION

Javascript: Text area last character is not being capitalized – Shopify

Editing a Shopify app. Last character in the text area does not get capitalized on the label picture unless you click outside of text area. $(function() { $('#cstedit-addembossing').keyup(function() { this.value = this.value.toUpperCase(); }); }); <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <textarea maxlength="10" data-area="back" class="customify-text"…

VIEW QUESTION
Back To Top
Search