Created
April 20, 2019 04:30
-
-
Save yeriepiscesa/d74b9bb806a7cc19fc5a160d50261b5d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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