skip to Main Content

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