Answers for "text transform javascript"

0

text transform javascript

<!DOCTYPE html>
<html>
<body>

<p id="demo">This is an example paragraph.</p>

<button type="button" onclick="myFunction()">Transform text</button>

<script>
function myFunction() {
  document.getElementById("demo").style.textTransform = "capitalize";
}
</script>

</body>
</html>
Posted by: Guest on March-17-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language