Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html ng-app="stackApp">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.0/angular.min.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body ng-controller="StackController as vm">
<form name="form" novalidate>
 
    <div class="vat-field">
        <label>VAT number
            <input type="text" ng-model="vm.vat" name="vat" valid-vat="{{formModel.country}}">
        </label>
        <div>
            <span ng-show="form.vat.$error.vat">
                <small class="error">Your VAT address is not valid, please correct.</small>
            </span>
        </div>
    </div>
    <div class="country-field">
        <label>Country
            <select ng-model="formModel.country" name="country">
                <option value="{{country.iso_3}}" ng-repeat="country in vm.countries">{{country.name}}</option>
            </select>
        </label>
    </div>
    
  <pre>{{form.vat|json}}</pre>
</form>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
winsikpro
0viewers