Posts by Antonio Neto • 1 point
2 posts
-
0
votes2
answers1149
viewsA: How to update a select in html with javascript
Thank you very much for your help I got it this way $(document).ready(function () { $('#camporegiao').on('change', function () { $("#campofilial").empty(); $.ajax({ type: 'GET', url:…
-
0
votes2
answers1149
viewsQ: How to update a select in html with javascript
I’m new to development and I need help. I have a select in html that I need updated when selected from another select. Follows html code: $(document).ready(function () {…