Closed feuerbacherb closed 4 years ago
This is now up and running. All issues with the site not removing the previous search's activities are fixed with the removeToDos function.
var removeTodos = function() {
var myobj = document.getElementById("info-box-todos");
if (myobj !== null) {
myobj.remove();
}
}
This box will be dynamically created based off the info-box class in css.
Description