UNPKG

angular-select-state

Version:

An AngularJS module that generates a list of US states using the HTML select tag.

22 lines (20 loc) 531 B
# angular-select-state An AngularJS module that generates a list of US states using the HTML select tag. This is based on the angular module [ng-country-select](https://github.com/navinpeiris/ng-country-select.git) repository. ## Install ### npm ``` npm install angular-select-state ``` ### bower ``` bower install angular-select-state ``` ## Usage Add the dependancy to your app module: ``` angular.module('someApp', ['selectState']) ``` Add the following in your html `<form></form>` tags: ``` <select-state></select-state> ```