Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
Solucionado (ver solución)
Solucionado
(ver solución)
1
respuesta

[Duda] limpiar un textarea al hacer click

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

1 respuesta
solución!

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>