Get started with angular-ui-select CDN

MIT licensed

Angular-UI Select is a directive for creating custom select elements in AngularJS applications.

Tags:
  • angular
  • ui
  • select

Stable version

Copied!

How to start using angular-ui-select CDN


<!DOCTYPE html>
<html>
<head>
  <title>Get started with angular-ui-select CDN - cdnhub.io</title>
  <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.7.9/angular.min.js"></script>
  <script src="https://cdn.cdnhub.io/angular-ui-select/0.19.8/select.min.js"></script>
  <link rel="stylesheet" href="https://cdn.cdnhub.io/angular-ui-select/0.19.8/select.min.css">
</head>
<body ng-app="myApp">
  <div ng-controller="MyController">
    <label>Select an option:</label>
    <select ng-model="selectedOption" ng-options="option as option.name for option in options">
      <option value="">-- Please select --</option>
    </select>
  </div>
  <script src="app.js"></script>
</body>
</html>
Copied!
Copied!
Copied!
Copied!
Copied!
Copied!

All versions