79272627

Date: 2024-12-11 17:26:25
Score: 1
Natty:
Report link
    $(document).ready(function(){
jQuery("#country").change(function(){
var id=jQuery(this).val();
jQuery.ajax({
    type:'POST',
    url:'find_state.php',
    data:'id='+id,
    success:function(result){
     jQuery('#state').html(result);
    }
})
})

})

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Waseem Abbas