Published
- 1 min read
clear input field data on button click
The solution for this is noted below
clear input field data on button click
Solution
;<button type='button' onclick='ClearFields();'>
Clear
</button>
function ClearFields() {
document.getElementById('textfield1').value = ''
document.getElementById('textfield2').value = ''
}
Try other methods by searching on the site. That is if this doesn’t work