In my ASP.NET MVC Edit view, I have an EditorFor (@id="Desc") that contains text, all or most of which is uppercase. I need to provide a way for my user to click a button that will convert and display that text in normal sentence case (only the first letter of each sentence capitalized) without actually submitting the form to the Edit post method (and thereby saving the change before the user has had a chance to review and approve it).
The solutions I've found so far all cause the form to be submitted and that's definitely not what I want to happen. I'm guessing there is a jQuery solution that will just update the display without submitting the form but I'm' not sure what it is or how to implement it.
Any help would be appreciated. Please let me know if I need to provide addition info Thanks!