roxyvaught / Vacation-Planner

A U.S. National Park planner that allows you to plan your next vacation by viewing the weather and events/alerts for any given National Park
https://roxyvaught.github.io/Vacation-Planner/
0 stars 2 forks source link

Activities Box #14

Closed feuerbacherb closed 4 years ago

feuerbacherb commented 4 years ago

This box will be dynamically created based off the info-box class in css.

Description

feuerbacherb commented 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();
   }
 }