0
How do I delete a text node when a button is clicked?
https://code.sololearn.com/WWsM8jajToBX/?ref=app In the process of building a calculated. Right now Iâm just trying to get the clear button to work. When number buttons are pressed, text nodes are made that show the numbers on the calculator. When I press clear I want these text nodes removed with the remove child function, but itâs not working. This is around line 27. Any help would be appreciated.
1 Answer
0
function nu (){
document.getElementsByClassName('result')[0].innerHTML = '';
}