country-region-selector/README.md

96 lines
4.3 KiB
Markdown
Raw Normal View History

2014-03-25 03:53:49 +00:00
## Country-Region-Selector (CRS)
2014-03-23 01:19:14 +00:00
2014-03-23 05:31:26 +00:00
A common thing you often see in forms is a country dropdown which changes the contents of a second region field
when a country is selected. It's super easy to do this, but requires a lot of leg work tracking down the data and
rigging it all up in your form. This script let's you set that all up automatically without having to run any custom
javascript.
2014-03-23 04:10:12 +00:00
2014-03-23 05:31:26 +00:00
The script comes in two flavours:
2014-03-25 03:53:49 +00:00
- standalone script (no dependencies, just plain JS) - **54KB** (minified version)
- a jQuery-dependent version (ever-so slightly smaller) - **53KB** (minified version)
The reason the files are so large is that they contain all the country and region strings.
2014-03-23 04:10:12 +00:00
### Features
2014-03-23 05:31:26 +00:00
- Lets you customize the default "Please select" field for each country/region with whatever language you want.
2014-03-23 04:10:12 +00:00
- Lets you specify a default value for each field.
2014-03-23 05:31:26 +00:00
- Lets you customize the appearance and value of the country field ("Canada" or "CA") - they can be different, if desired
(e.g. 2 char code for saving to database; full name for displaying purposes).
- Lets you have as many country-region-mapped fields as you need in your page.
- The standalone version has no dependencies on other any libs (jQuery etc) and you can include the JS file anywhere you want
(head/foot).
2014-03-23 04:10:12 +00:00
### Example
2014-03-25 03:53:49 +00:00
Check out the example.html page for an example of the various ways it can be configured and used.
2014-03-23 04:10:12 +00:00
### How to Use
It's very easy.
2014-03-25 03:53:49 +00:00
1. Include the `crs.min.js` file in your webpage.
2014-03-23 04:10:12 +00:00
2. Add two `<select>` fields in the appropriate locations in your form.
3. Give the country field a class of `crs-country`.
4. Give the region field a class of `crs-country`.
3. Now we need to map each country to the region field so the script knows what to update. Add an
attribute to the country dropdown: `data="crsX"` where X is any number (e.g. start with 1). Give the region dropdown a
**class** of "crxX" where X is the same number you just picked.
#### Default "Please select" Values
If you want to add default "Please select" options to either the country or region fields, just go ahead and add it
directly in the markup. The script will **append** the country and region `<option>` fields - not overwrite them.
#### Styling
If you didn't add a default value for the region field, you may notice that it looks pretty pretty crumby. So to style
it, just add the following CSS: `.yourField { width: 100px; }`
#### Adding default values for each field
If your form is used for people returning to it (e.g. "Edit Contact Info" or whatever), you'll need the country and
2014-03-25 03:53:49 +00:00
region fields to be prefilled with the appropriate value on page load. To do that, just add a `data-default-value=""` attribute
to each element containing the country / region value last saved. Note: the region value will only ever be populated if the
country field is as well.
2014-03-23 04:10:12 +00:00
2014-03-25 03:08:39 +00:00
### List of data-* attributes
This lists all the available data-* attributes that you can add to the country/region fields to customize the appearance
and behaviour.
##### country fields
- `data-region-id` - required. This should contain the ID of the region field that it's being mapped to.
- `data-default-option` - optional. Default: "Select country". This determines the default, blank option display value.
2014-03-25 03:53:49 +00:00
- `data-default-value` - optional. The default selected value in the country dropdown (e.g. "Canada")
2014-03-25 03:08:39 +00:00
##### region fields
- `data-blank-option` - before the user selects a country, there's a single <option> displayed which by default is the
"-" character.
- `data-default-option` - optional. Default: "Select region". This determines the default, blank option display value
that shows up after a user has selected a country.
2014-03-25 03:53:49 +00:00
- `data-default-value` - optional. The default selected value in the region dropdown (e.g. "British Columbis")
2014-03-25 03:08:39 +00:00
2014-03-23 04:10:12 +00:00
### Notes for Developers
If you want to edit the source code, go right ahead (pull requests welcome, of course!). The unminified source code
is found in the `/source` folder. To re-generate the minified version, just run the Grunt task. In case you're not
familiar with Grunt, here's how you'd do that.
1. Install node on your computer.
2. Clone this repository to your local computer.
3. In the command line, navigate to
4. Type `npm install` to download all necessary require
5. Type `npm install -g grunt-cli` to install the Grunt command line tool to run properly.
2014-03-25 03:53:49 +00:00
6. Type `grunt`
2014-03-23 04:10:12 +00:00
### License
MIT.