Topics

Form widget submit actio

If you want to do some actions after successful submit of Form widget, use the code bellow 

jQuery('.ipWidget-Form').on('ipSubmitResponse', function (e, response) {
    var $widget = $(this);
    if (response.status && response.status == 'success') {
        //your action
    }
});