skip to Main Content

How to handle this scenerio in Parsley.js on laravel

<form action="" method="POST" id="form" > <select id="inputCustomerType" class="form-control" name="customer_type" required> <option value="">Choose...</option> <option value="select1">Select1</option> <option value="select2">Select2</option> <option value="select3">Select3</option> </select> <script> $('#form').parsley(); </script> <button type="submit" id="updateButton" class="btn btn-primary mt-3" >Update</button> </form> i want, if i change the select option, remove the…

VIEW QUESTION
Back To Top
Search