“OnClick Eliminar el valor de TextAREA” Código de respuesta

OnClick Eliminar el valor de TextAREA

<input type="button" value="Clear" onclick="javascript: functionName();" >
you just need to set the onclick event, call your desired function on this onclick event.

function functionName()
{
    $("#output").val("");
}
Above function will set the value of text area to empty string.
Ankur

OnClick Eliminar el valor de TextAREA

<textarea id='comments' rows='4' cols='4'></textarea>
<input type="button" value="Clear" onclick="javascript:document.getElementById('comments').value='';">
Ankur

Respuestas similares a “OnClick Eliminar el valor de TextAREA”

Preguntas similares a “OnClick Eliminar el valor de TextAREA”

Más respuestas relacionadas con “OnClick Eliminar el valor de TextAREA” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código