I have a text that is written in uppercase. Example:
THIS IS UPPERCASE
What I want is to make it look like this (capitalize it):
This Is Uppercase
I just found out I cannot do it with CSS since text-transform: capitalize only works on the first letter, so the output is still:
THIS IS UPPERCASE
Is there any way with jquery to achieve this effect?
EDIT:
This is my HTML code:
<div class="badge">
<div class="participant">NAME SURNAME</div>
</div>
NAME and SURNAME are dynamic variables, but some of the data is written in UPPERCASE, some is written in lowercase and some is written in Capitalize. I just want to uniform the names with Capitalize, possibly including the javascript in my html file, but I have trouble capitalizing strings written in uppercase.