blob: 23c55a3fce2f9f006d7013d0bf61cf88b1852122 [file] [log] [blame]
pranav nachnekar7b9e3092019-08-28 16:57:37 +05301function submit(){
2 let params = new URLSearchParams(window.location.search);
3 const date = params.get('date');
4 const time = params.get('time');
5 const tz = params.get('tz');
6 const customer_name = document.getElementById('customer_name').value;
7 const customer_number = document.getElementById('customer_number').value;
8 const customer_skype = document.getElementById('customer_skype').value;
9 const customer_notes = document.getElementById('customer_notes').value;
10 console.log({date,time,tz,customer_name,customer_number,customer_skype,customer_notes});
11}