Advertisement
Shell_Casing

code

Dec 18th, 2018
704
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function checkIfFormIsFullyFilled() {
  2.     console.log('button clicked');
  3.      if (startDate.value !== '' && startTime.value !== '' && endDate.value !== '' && endTime.value !== '' && count.value !== '' && interval.value !== '') {
  4.          getValuesAndPlotChart();
  5.      } else {
  6.          warning.style.display = 'block';
  7.      }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement