hola alguien me podrá guiar de como limpiar un textarea al hacer click en un boton que no se vea el texto que escribio el usuario
hola alguien me podrá guiar de como limpiar un textarea al hacer click en un boton que no se vea el texto que escribio el usuario
Hola!
Te comparto un ejemplo
<!DOCTYPE html>
<html>
<body>
Address:<br>
<textarea id="myTextarea">
342 Alvin Road
Ducksburg</textarea>
<p>Click the button to change the contents of the text area.</p>
<button type="button" onclick="myFunction()">Try it</button>
<script>
function myFunction() {
document.getElementById("myTextarea").value = "";
}
</script>
</body>
</html>