$(function () { $('body').on('change', '[data-mrp-container="country-dropdown"]', function () { var $this = $(this); $.ajax({ type: 'GET', url: MRP.Url.GetStateByCountry, data: { countryId: $this.val() }, success: function (data) { var statesDrop = $this.parents('[data-mrp-container="country-state"]').find('[data-mrp-container="state-dropdown"]'); statesDrop.empty().append(data); statesDrop.trigger('change'); } }); }); }); //# sourceMappingURL=countrystatedropdownajax.js.map