
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
country-region-dropdown-menu
Advanced tools
A dropdown menu created with javascript that allows user to implement country-region dropdown list effortlessly.
This javascript enables you to implement a country-region dropdown menu with ease. It is just as simple as to enter the pre-defined class name and attribute into the dropdown control (HTML select input box) to make them work. After that, the region dropdown will be automatically repopluated upon the selection of country name.
This plugin uses the ISO defined name for the display, namely ISO3166-1 (for Country Name) and ISO3166-2 (for Region Name).
This plugin equipped with multiple languages for country and region name display. Please see the below of the supported languages.
Language code | Language Name | |
---|---|---|
ar | Arabic | Demo |
cs | Czech | Demo |
da | Danish | Demo |
de | German | Demo |
en | English | Demo |
es | Spanish | Demo |
et | Estonian | Demo |
fi | Finnish | Demo |
fr | French | Demo |
ga | Irish | Demo |
it | Italian | Demo |
ja | Japanese | Demo |
ko | Korean | Demo |
ms | Malay | Demo |
nl | Dutch | Demo |
pt | Portuguese | Demo |
ru | Russian | Demo |
sv | Swedish | Demo |
tr | Turkish | Demo |
vi | Vietnamese | Demo |
zh-cn | Chinese Simplified | Demo |
zh-tw | Chinese Traditional | Demo |
Please take a look on How to add City DropDown to Country-Region DropDown Menu tutorial to learn more about how City DropDown added.
Please check on demo page to have a clearer picture about how it works.
Please try out the demo on JSFiddle page.
<html>
<head>
<meta charset="UTF-8">
<!-- link for jquery style -->
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/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">
<script src="assets/js/geodatasource-cr.min.js"></script>
<link rel="stylesheet" href="assets/css/geodatasource-countryflag.css">
<!-- link for semantic-ui style -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.5.1/semantic.min.js" integrity="sha512-dqw6X88iGgZlTsONxZK9ePmJEFrmHwpuMrsUChjAw1mRUhUITE5QU9pkcSox+ynfLhL15Sv2al5A0LVyDCmtUw==" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.5.1/semantic.min.css" integrity="sha512-8bHTC73gkZ7rZ7vpqUQThUDhqcNFyYi2xgDgPDHc+GXVGHXq+xPjynxIopALmOPqzo9JZj0k6OqqewdGO3EsrQ==" crossorigin="anonymous" />
<!-- link to languages po files -->
<link rel="gettext" type="application/x-po" href="languages/en/LC_MESSAGES/en.po" />
<script type="text/javascript" src="assets/js/Gettext.js"></script>
</head>
<body>
<div>
Country: <select class="gds-cr" country-data-region-id="gds-cr-one" data-language="en"></select>
Region: <select id="gds-cr-one" ></select>
</div>
<div>
Country: <select class="gds-cr" country-data-region-id="gds-cr-two" data-language="en" 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" data-language="en"></select>
Region: <select id="gds-cr-three"></select>
</div>
<div>
Country: <div class="ui fluid search selection dropdown gds-cr-semantic" country-data-region-id="gds-cr-four" data-language="en"></div>
Region: <select id="gds-cr-four"></select>
</div>
<div>
Country: <input class="gds-cr-autocomplete" country-data-region-id="gds-cr-five" data-language="en">
Region: <input class="gds-cr-five-autocomplete" id="gds-cr-five">
</div>
<div>
Country: <select class="gds-cr" country-data-region-id="gds-cr-six" data-language="en" country-include="US,GB,DE,FR,IT,NL"></select>
Region: <select id="gds-cr-six" ></select>
</div>
</body>
</html>
If you are using Twitter Bootstrap with cdnjs, 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="https://cdnjs.cloudflare.com/ajax/libs/country-region-dropdown-menu/2.5.1/js/geodatasource-cr.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js" type="text/javascript"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/country-region-dropdown-menu/2.5.1/css/geodatasource-countryflag.min.css">
<link rel="gettext" type="application/x-po" href="languages/en/LC_MESSAGES/en.po" />
<script type="text/javascript" src="assets/js/Gettext.js"></script>
</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" data-language="en"></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>
The following steps show how to use the dropdown menu in Express Web Framework:
npm install country-region-dropdown-menu
/public/javascripts/
directory./public/stylesheets/
directory./public/img/
directory./public/
directory.script(src='/javascripts/geodatasource-cr.min.js')
script(src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"))
script(src="//ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js")
link(rel='stylesheet' href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css")
link(rel='stylesheet' href='stylesheets/geodatasource-countryflag.css')
link(rel='gettext' type='application/x-po' href='languages/en/LC_MESSAGES/en.po')
script(src='/javascripts/Gettext.js')
|Country:
select.gds-cr(country-data-region-id="gds-cr-one",data-language="en").gds-countryflag
|Region:
select#gds-cr-one
The following steps show how to use the dropdown menu in React:
npm install country-region-dropdown-menu
import {CountryRegionDropdown} from 'country-region-dropdown-menu';
<CountryRegionDropdown />
gds-cr
whereas gds-cr-semantic
for country field that using Semantic-UI whereas gds-cr-autocomplete
for country field that using autocomplete input option.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.data-language
is required in country field which use set the language used in both country and region data. Refer to multilingual section for language code supported.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.country-include
is optional in country field which use to set country dropdown with the specific countries, for example country-include="US,GB,DE,FR,IT,NL"
country-exclude
is optional in country field which use to exclude the specific countries from the country dropdown , for example country-exclude="US,GB,DE,FR,IT,NL"
region-data-default-value
is optional in region field which use set the default selected region value.The Country Flag is designed from IP2Location™ Country Flags https://www.ip2location.com/free/country-flags
<link rel="stylesheet" href="assets/css/geodatasource-countryflag.css">
<link rel="stylesheet" href="assets/css/geodatasource-countryflag-round.css">
<link rel="stylesheet" href="assets/css/geodatasource-countryflag-square-bended.css">
<link rel="stylesheet" href="assets/css/geodatasource-countryflag-square-rounded.css">
<link rel="stylesheet" href="assets/css/geodatasource-countryflag-square-shadow.css">
<link rel="stylesheet" href="assets/css/geodatasource-countryflag-flag.css">
Please refer to example-default.html file.
Email: support@geodatasource.com
URL: https://www.geodatasource.com
FAQs
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.