Sha256: 100115a277e6096a2acf28c271195c608ac0a8f013360bbf00dd8181d3b97041

Contents?: true

Size: 815 Bytes

Versions: 1

Compression:

Stored size: 815 Bytes

Contents

(($) ->
  $.fn.china_city = () ->
    @each ->
      selects = $(@).find('.city-select')
      selects.change ->
        $this = $(@)
        next_selects = selects.slice(selects.index(@) + 1) # empty all children city
        $("option:gt(0)", next_selects).remove()
        if next_selects.first()[0] and $this.val() and !$this.val().match(/--.*--/) # init next child
          $.get "/china_city/#{$(@).val()}", (data) ->
            data = data.data if data.data?
            next_selects.first()[0].options.add(new Option(option[0], option[1])) for option in data
            # init value after data completed.
            next_selects.trigger('china_city:load_data_completed');

  $(document).on 'ready page:change', ->
    $('.city-group').china_city()
)(if typeof(jQuery)=="function" then jQuery else Zepto)

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
soaring_china_city-0.0.6 app/assets/javascripts/china_city/jquery.china_city.js.coffee