skip to Main Content

Why my ajax request doesn't get compiled? – Jquery ajax

This part of my code isn't working, I already tried to do everything but it still doesn't working, what can I do to fix it? $.ajax({ url: "https://corona-api.com/countries/BR", type: "GET", sucess: function(response){ document.getElementById("ifbr").innerHTML = response.latest_data.confirmed }, error: function(){ document.getElementById("ifbr").innerHTML =…

VIEW QUESTION

How to remove unwanted option value from dropdown? – Jquery ajax

example 1 <select id="BillTypeId" name="BillTypeId" required="" class="form-control"> <option value=""></option> <option value="9" tax-groupid="1" data-price="1500.00" data-isfixed="False">LAUNDRY</option> <option value="1064" tax-groupid="1" data-price="0.00" data-isfixed="False">DEBIT</option> <option value="1065" tax-groupid="1" data-price="0.00" data-isfixed="False">CREDIT</option> </select> Let's suppose I have a dropdown with dynamic option values. I have a function to…

VIEW QUESTION
Back To Top
Search