ajax - Jquery clear select in the second populate -


i have jquery , working fine. problem facing when select second time add data previous results. , not clear it. tried use empty function , .html('') did not work.

$(document).ready(function(){  $("#cat").change(function(){ $.ajax( {url:"maintenance_task.php", data:   { cat_id : $("#cat option:selected").val() }, datatype: 'json', success:function(json){      $.each(json, function(i, value) {          $('#task_type').append($('<option>').text(value).attr('value', i));     });   }});  });}); 

can me this. in advance.

try this

$(document).ready(function(){    $("#cat").change(function(){    $.ajax({       url:"maintenance_task.php",       data:   { cat_id : $("#cat option:selected").val() },       datatype: 'json',       success:function(json){         $('#task_type').html(' ');         $.each(json, function(i, value) {           $('#task_type').append($('<option>').text(value).attr('value', i));         });      }   });   }); }); 

Comments

Popular posts from this blog

linux - Does gcc have any options to add version info in ELF binary file? -

android - send complex objects as post php java -

charts - What graph/dashboard product is facebook using in Dashboard: PUE & WUE -