how to set textbox value to empty(blank) using javascript in facebook
Assuming the element you want to change has the id question
, so you can do
document.getElementById("question").value = "";
Assuming the element you want to change has the id question
, so you can do
document.getElementById("question").value = "";