I want to add a custom recaptha box in the elementor form. When someone successfully does that custom recaptha then I want the elementor form to submit all the data.
The code I want to integrate in the elementor form submit eventlistener:
form1.addEventListener('submit', e=>{
if(input2 === checker2){
// all the elementor code go there if input2 and checker2 are equal
}else{
e.preventDefault();
}
})
I will handle these input2 and checker2. Let me know if there's any way to do that.