mgildea / Multi-Step-Form-Js

Multi Step Form with jQuery validation
MIT License
49 stars 25 forks source link

Making an ajax request on next #24

Open debuGhy opened 4 years ago

debuGhy commented 4 years ago

I want to know how to save the data of every step individually. I want to save every step's form data separately for which I want to make an ajax request.

debuGhy commented 4 years ago

Checking the active index I managed calling the api by using this--

$(document).on("msf:viewChanged", function(event, data){
        API call
});

Suppose If API has some error how to stop the current step to go next? Can you help?