blob: f2d489a7280be598d5c2581ca8222d57945d29a5 [file]
<!DOCTYPE html>
<html>
<body>
<input id="c" type="number" value="10">
<script>
function go() {
const el = document.getElementById('c');
el.focus();
el.value = "12";
}
</script>
</body>
</html>