I have a wizard with a few steps and a few buttons like so:
<asp:linkButton CssClass="btn-primary" ValidationGroup="contact" Text="Next" ID="lbtnNext" runat="server" />
This control validates a few input fields. When no errors are thrown, so all input fields are filled in correctly I want to use jQuery to show the next step and update a progressbar.
How can I call a jQuery function after the lbtnNext button throws no validation errors?