What is the JS to put on the click event of a button in order not to go forward if the user ommits to enter his/her name, number into two mobiletextinput of type text and number? Maybe something like
var name = Tiggr('mobiletextinput1').val();
var number = Tiggr('mobiletextinput2').val();
if (name != ' ' || number != ' '){
alert ('Please enter you name number');
return;
}
and then put a Navigate to page action
It does not work for me...