I am working on a wizard using TypeScript and ASP.NET which consists of several steps. Here is an example:
Step 1:
TextBox input <---Name TextBox input <--- Age
Button onClick="nextStep()"
When I click on the button, I want to validate my input using jQuery Validation and call the function nextStep() if the validation passes.
The problem is that the form is not structured properly, and nextStep() makes an Ajax request.
Is there a quick solution to this issue?
Apologies for being a beginner in this area.