I'm very new to javascript, and I'm not sure what to do with my script below.
Please see script below which is a resource I found to help me activate input's within iscroll4...
var inputSubmit = document.getElementById('gform_submit_button_1');
inputSubmit.addEventListener('touchstart' /*'mousedown'*/, function(e) {
e.stopPropagation();
}, false);
This is great for one input, but I've got an entire form to apply this too. So this is how I wrote it...
var inputSubmit = document.getElementById('gform_submit_button_1'),
inputName = document.getElementById('input_1_1'),
inputEmail = document.getElementById('input_1_2'),
inputPhone = document.getElementById('input_1_3'),
inputMessage = document.getElementById('input_1_4'),
inputCaptcha = document.getElementById('input_input_1_5');
inputSubmit.addEventListener('touchstart' /*'mousedown'*/, function(e) {
e.stopPropagation();
}, false);
inputName.addEventListener('touchstart' /*'mousedown'*/, function(e) {
e.stopPropagation();
}, false);
inputEmail.addEventListener('touchstart' /*'mousedown'*/, function(e) {
e.stopPropagation();
}, false);
inputPhone.addEventListener('touchstart' /*'mousedown'*/, function(e) {
e.stopPropagation();
}, false);
inputMessage.addEventListener('touchstart' /*'mousedown'*/, function(e) {
e.stopPropagation();
}, false);
inputCaptcha.addEventListener('touchstart' /*'mousedown'*/, function(e) {
e.stopPropagation();
}, false);
The variables are probably fine as the are, but is there some way I can have less script and combine the bottom part into one?
If this is how it's got to be then no worries.
Any advice would be really helpful.
Thanks