$( document ).ready( function() {$(“#fonnte_fa_otp_submit”).click(function(){$(“#respon”).html(“Silahkan tunggu”);$.ajax({url: window.location.href,type: “post”,data: $(“form#fonnte_fa_form_otp”).serialize(),success: function (response) {var result = JSON.parse(response);$(“#respon”).html(result.message);if (result.redirect !== undefined) {window.location.href=result.redirect;}},error: function(jqXHR, textStatus, errorThrown) {console.log(textStatus, errorThrown);}});return false;});});

