Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function checkIfFormIsFullyFilled() {
- console.log('button clicked');
- if (startDate.value !== '' && startTime.value !== '' && endDate.value !== '' && endTime.value !== '' && count.value !== '' && interval.value !== '') {
- getValuesAndPlotChart();
- } else {
- warning.style.display = 'block';
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement