You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
598 B
18 lines
598 B
$(document).ready(function(){
|
|
|
|
$.get(
|
|
"/admin/ajax_city/", {'id': $('#id_country').val()}, function(j){
|
|
$('#id_city').html(j);
|
|
//$('#id_city option :first').attr("selected", "selected");
|
|
});
|
|
|
|
$('#id_country').change(function(){
|
|
$.get(
|
|
"/admin/ajax_city/", {'id': $(this).val()}, function(j){
|
|
|
|
$('#id_city').html(j);
|
|
$('#id_city').attr('disabled', false);
|
|
|
|
});
|
|
});
|
|
});
|
|
|