Horje
html number input with commas Code Example
html number input with commas
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>innerHTML</title>
</head>
<body>
    
<h1>Exaple, "<span id="txt"></span>"</h1>

<input type="text" id="input">

<button onclick="    document.getElementById('txt').innerHTML = yourInput.value;">click me to change</button>

<script>

    let yourInput = document.getElementById('input');
    //this will get your wanted element and asing its value to let variable 

</script>
</body>
</html>




Html

Related
vue paragraph not showing when class applied to it Code Example vue paragraph not showing when class applied to it Code Example
page html de presentation d'un projet Code Example page html de presentation d'un projet Code Example
bootstrap form background color Code Example bootstrap form background color Code Example
html unidades de medida Code Example html unidades de medida Code Example
html fecha mes y año Code Example html fecha mes y año Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9