I want to call signup javascript page after the user filled the form
Now I m facing 2 issue
when I filled only one input field and press next button then coming to the second page
when I filled all the input field and press the next button then not coming to the second page
signup.html
- "UTF-8" />
-
- signup.js
- $(document).ready(function () {
- $('#btnnext').click(function (event) {
- sessionStorage.clear();
- sessionStorage.setItem("firstName", $("#txtfname").val());
- sessionStorage.setItem("lastName", $("#txtlname").val());
- sessionStorage.setItem("middleName", $("#txtmname").val());
- $("#txtPersonalInformation").load("ContactInformation.html");
- });
- });
what I want to
when user filled the all input field then I call to signup javascript
when user filled only one input field then not call to signup javascript
In short when user filled the form then calling to the next form
rahul patilPosted May 15, 2020, 6:36 AM
Salman BegPosted May 15, 2020, 6:30 AM