/country-region-dropdown-menu

A dropdown menu created with javascript that allows user to implement country-region dropdown list effortlessly.

Primary LanguageCSSMIT LicenseMIT

Country-Region DropDown Menu

This javascript enables user to easily implement a country-region dropdown menu. It is as simple as enter the pre-defined class name and attribute into the country and region dropdown menu (select box) respectively to make them works. After that, the region dropdown will be automatically refreshed upon the change of country selection.

This plugin support the display of ISO3166-1 (for Country Name) and ISO3166-2 (for Region Name) standard.

  • Total of 247 country name supported (except Bouvet Island and Heard Island and Mcdonald Islands, which have no region/subdivision defined)
  • Please visit ISO3166-2 Subdivision Code to learn more about the ISO3166-2 supported.

Please take a look on How to add City DropDown to Country-Region DropDown Menu tutorial to learn more about how City DropDown added.

Demo

Country-Region DropDown Menu Demo 1

Country-Region DropDown Menu Demo 2

Please check on demo page to have a clearer picture about how it works.

Demo on JSFiddle

Please try out the demo on JSFiddle page.

Usage

<html>
  <head>
    <meta charset="UTF-8">
    <script src="assets/js/geodatasource-cr.min.js"></script>
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
    <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
    <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
    <link rel="stylesheet" href="assets/css/geodatasource-countryflag.css">
  </head>
  <body>

    <div>
        Country: <select class="gds-cr" country-data-region-id="gds-cr-one" ></select>

        Region: <select id="gds-cr-one" ></select>
    </div>

    <div>
        Country: <select class="gds-cr" country-data-region-id="gds-cr-two" country-data-default-value="US" ></select>

        Region: <select id="gds-cr-two" region-data-default-value="California"></select>
    </div>

    <div>
        Country: <select class="gds-cr gds-countryflag" country-data-region-id="gds-cr-three" ></select>

        Region: <select id="gds-cr-three" ></select>
    </div>

  </body>
</html>

Bootstrap Usage

If you are using Twitter Bootstrap, you may refer to the below example for the implementation.

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Country-Region DropDown Menu</title>

    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">

    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
    <script src="assets/js/geodatasource-cr.min.js"></script>
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
    <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
    <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
    <link rel="stylesheet" href="assets/css/geodatasource-countryflag.css">
</head>
<body>
    <div class="container">
        <div class="row">
            <div class="col-md-12 text-center" style="margin-bottom:40px;">
                <h2>Country-Region DropDown Menu</h2>
            </div>
            <div class="col-md-12">
                <form class="form-horizontal">
                    <div class="form-group">
                        <label class="col-sm-2 control-label">Country</label>
                        <div class="col-sm-10">
                            <select class="form-control gds-cr gds-countryflag" country-data-region-id="gds-cr-1"></select>
                        </div>
                    </div>
                    <div class="form-group">
                        <label for="gds-cr-1" class="col-sm-2 control-label">Region</label>
                        <div class="col-sm-10">
                            <select class="form-control" id="gds-cr-1"></select>
                        </div>
                    </div>
                </form>
            </div>
        </div>
    </div>
</body>
</html>

Node.js Usage

The following steps show how to use the dropdown menu in Express Web Framework:

  1. Install the module by npm install country-region-dropdown-menu
  2. Copy geodatasource-cr.min.js script to /public/javascripts/ directory.
  3. Copy geodatasource-countryflag.css stylesheet and geodatasource-countryflag folder to /public/stylesheets/ directory.
  4. Include the script in the jade file by script(src='/javascripts/geodatasource-cr.min.js')
  5. Include the script in the jade file by script(src="//ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"))
  6. Include the script in the jade file by script(src="//ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js")
  7. Include the link in the jade file by link(rel='stylesheet' href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css")
  8. Include the link in the jade file by link(rel='stylesheet' href='stylesheets/geodatasource-countryflag.css')
  9. Code for implementation:
    |Country:
    select.gds-cr(country-data-region-id="gds-cr-one").gds-countryflag
    |Region:
    select#gds-cr-one

Attributes

  • Country field must be given a class name as gds-cr .
  • gds-countryflag can be added to class name of country field to support country flag.
  • country-data-region-id is required in country field that contains the id of region field.
  • country-data-default-value is optional in country field which use to set the default selected country value, it supports both ISO3166-1 alpha-2 Country Code and country full name.
  • region-data-default-value is optional in region field which use set the default selected region value.

Country Flag Designs

  • Square Country Flag with <link rel="stylesheet" href="assets/css/geodatasource-countryflag.css"> Square Country Flag
  • Round Country Flag with <link rel="stylesheet" href="assets/css/geodatasource-countryflag-round.css"> Round Country Flag
  • Marker Country Flag with <link rel="stylesheet" href="assets/css/geodatasource-countryflag-marker.css"> Marker Country Flag

Sample page

Please refer to example.html file.

Support

Email: support@geodatasource.com
URL: https://www.geodatasource.com

Credits