Skip to content

Instantly share code, notes, and snippets.

@yeriepiscesa
Created April 20, 2019 04:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yeriepiscesa/d74b9bb806a7cc19fc5a160d50261b5d to your computer and use it in GitHub Desktop.
Save yeriepiscesa/d74b9bb806a7cc19fc5a160d50261b5d to your computer and use it in GitHub Desktop.
(function( $ ) {
$( function(){
var $regency, $district, $village;
$( '#province_id' ).on( 'change', function() {
var data = {
"action": "get_administrative",
"province": $(this).val(),
"security": chainedselect.security
};
$regency = clear_selects( 'regency_id', 'Select Regency' );
$district = clear_selects( 'district_id', 'Select District' );
$village = clear_selects( 'village_id', 'Select Village' );
fill_data( $regency, data );
} );
$( '#regency_id' ).on( 'change', function() {
$district = clear_selects( 'district_id', 'Select District' );
$village = clear_selects( 'village_id', 'Select Village' );
var data = {
"action": "get_administrative",
"regency": $(this).val(),
"security": chainedselect.security
};
fill_data( $district, data );
} );
$( '#district_id' ).on( 'change', function() {
$village = clear_selects( 'village_id', 'Select Village' );
var data = {
"action": "get_administrative",
"district": $(this).val(),
"security": chainedselect.security
};
fill_data( $village, data );
} );
});
function clear_selects( id, empty_val ) {
var $element = $( '#'+id );
$element.empty();
$element.append( new Option( '-- ' + empty_val + ' --', '', false, false ) );
return $element;
}
function fill_data( $element, data ) {
$.ajax({
"url": chainedselect.ajaxurl,
"type": "POST",
"dataType": "html",
"data": data,
"success": function( response ) {
var result = $.parseJSON(response);
$.each( result, function( key, val ) {
var option = new Option( val, key, false, false );
$element.append(option);
});
}
});
}
})( jQuery );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment