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>
More Posts related to JavaScript,
- Meaning of javascript:void(0) explained with example
- JavaScript : Get url protocol HTTP, HTTPS, FILE or FTP
- How to get UTC (GMT) time using JavaScript
- Add Animated Scrolling to Html Page Title Script
- Examples: Convert String to int in JavaScript
- Get Device Screen Width and Height using javaScript
- Remove items from JavaScript array
- Javascript convert text case from uppercase to lowercase
- [javaScript] Convert text case to lowercase
- How to detect Browser and Operating System Name and Version using JavaScript
- How to send email from JavaScript HTML using mailto
- How to check if a String contains substring or a word using javaScript
- Send Extra Data with Ajax Get or Post Request
- How to get query string in JavaScript HTML location.search
- How to get current URL Location using Javascript HTML
- JavaScript: Check if variable is a number
- JavaScript : Get current page address
- JavaScript: Count Words in a String
- Loading previous page using html button using JavaScript
- npm WARN saveError ENOENT: no such file or directory, open /mnt/c/package.json
- How to Print from JavaScript HTML using window.print
- Submit html form on dropdown menu value selection or change using javascript
- Detect if Cookies are enabled using JavaScript
- Writing your first Hello, World! 🌍 JavaScript code Tutorial
- JavaScript date in yyyy-MM-dd format
More Posts:
- Terminal display next month Calendar - Linux
- Unbound classpath container: JRE System Library [JavaSE-1.7] - Java
- INSTALL_FAILED_INSUFFICIENT_STORAGE Android Error - Android
- Bootstrap tooltip not working - Bootstrap
- SharePoint formula - Calculated columns cannot contain volatile functions like Today and Me - SharePoint
- SharePoint 2010 August 2015 Update KB3055049 - Duplicate Document ID issue bug fixed - SharePoint
- [Solution] Java Error Code 1603. Java Update did not complete. - Java
- 25 Notepad++ Command Argument List - NotepadPlusPlus