bjruiz / potential-robot-shows-app

Brenda's Shows App
https://bjruiz.github.io/potential-robot-shows-app/
GNU General Public License v3.0
0 stars 0 forks source link

Add a Load and Clear Button #2

Closed bjruiz closed 4 months ago

bjruiz commented 4 months ago

Add code from JavaScript file.

bjruiz commented 4 months ago

I added two button in my shows-script.js one button loads shows and the other clears the whole list.

  $('#loadBtn').on('click', function(){
     console.log('load button clicked');
     console.log('load songs here');
  }); //end of load button

    // button that clears the list
  $('#clearBtn').on('click',function(){

  });