cancel place order proccess

You can just return false to the ajax call thereby blocking the call. The below code is Tested . . And it’s working. Let me know if there is any issues.

$( 'form.checkout' ).on( 'checkout_place_order', function() {
    alert( 'submit cancelled!' );
    return false;
});