Sha256: 913216c2cf62220c303b7b7933c15960854d5cc08df786c7f2d097be04576bc2
Contents?: true
Size: 997 Bytes
Versions: 22
Compression:
Stored size: 997 Bytes
Contents
var update_state = function (region) { 'use strict'; var country = $('span#' + region + 'country .select2').select2('val'); var state_select = $('span#' + region + 'state select.select2'); var state_input = $('span#' + region + 'state input.state_name'); $.get(Spree.routes.states_search + '?country_id=' + country, function (data) { var states = data.states; if (states.length > 0) { state_select.html(''); var states_with_blank = [{ name: '', id: '' }].concat(states); $.each(states_with_blank, function (pos, state) { var opt = $(document.createElement('option')) .attr('value', state.id) .html(state.name); state_select.append(opt); }); state_select.prop('disabled', false).show(); state_select.select2(); state_input.hide().prop('disabled', true); } else { state_input.prop('disabled', false).show(); state_select.select2('destroy').hide(); } }); };
Version data entries
22 entries across 22 versions & 1 rubygems