Get started with angular-aria CDN

MIT licensed

Angular-Aria is a library in AngularJS that provides accessibility directives.

Tags:
  • angular
  • framework
  • browser
  • accessibility
  • a11y
  • client-side

Stable version

Copied!

How to start using angular-aria CDN


<!DOCTYPE html>
<html>
<head>
  <title>Get started with angular-aria CDN - cdnhub.io</title>
  <script src="https://code.angularjs.org/1.7.9/angular.min.js"></script>
  <script src="https://cdn.cdnhub.io/angular-aria/1.8.3/angular-aria.min.js"></script>
  <script src="app.js"></script>
</head>
<body ng-app="myApp">
  <div ng-controller="MyController">
    <input type="text" aria-label="Search input" ng-model="searchText">
    <button type="button" aria-label="Search" ng-click="search()">Search</button>
  </div>
</body>
</html>
Copied!
Copied!
Copied!

All versions