To convert a string (text) to lowercase one can make use of JavaScript toLowercase() function.
Let's see an example:<html>
<head>
<title>Convert text to lower case!</title>
</head>
<body>
<input type="text" style="width:300px;padding:6px" id="text"
placeholder="Enter text to convert to lower case"/>
<br/><br/>
<input type="button" value="Convert" onClick="convertToLovercase();"/>
<br/><br/>
<input type="text" style="width:300px;padding:6px" id="result"
placeholder="Result"/>
<script type="text/javascript">
function convertToLovercase() {
var data = document.getElementById("text").value;
var lowerCase = data.toLowerCase();
document.getElementById("result").value = lowerCase;
}
</script>
</body>
</html>
This is not an AI-generated article but is demonstrated by a human.
Please support independent contributors like Code2care by donating a coffee.
Buy me a coffee!

Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!