Force address fields to uppercase

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
7 years ago
Is there an html/css method to force address input to upper case?

Thank you in advance for your insight and suggestions.

JohnJ
7 years ago
cnsJohn wrote:
Is there an html/css method to force address input to upper case?

Thank you in advance for your insight and suggestions.

JohnJ


Hi JohnJ,

I've added one jquery method on keyup event to convert lower case to upper case.
I've added for first address line only (Street address)

File path:
..\Presentation\Nop.Web\Views\Customer\Register.cshtml

Added code block
  

<script type="text/javascript">
    $(document).ready(function () {
        $("#StreetAddress").keyup(function () {
                $(this).val($(this).val().toUpperCase());
        });              
    });
</script>



Hope this helps.
7 years ago
ajaysolanki,

Thanks.  I had thought about using jscript, but thought maybe I could do it with css.

Ended up using your suggestion on the registration, and OPC pages.

JohnJ
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.