Execute
<!DOCTYPE html> <html> <head> <title>Wikitechy AngularJS Tutorials</title> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js"> </script> </head> <body> <div ng-app=""> <h2>ng-list Directive in AngularJS Tutorials</h2> <input ng-model="tech" ng-list/> <br><br> <select ng-model="name" ng-options="x for x in tech"> </select><br><br> <h3>Value in tech Array: {{tech}}</h3> </div> </body> </html>
www.wikitechy.com © Copyright 2016. All Rights Reserved.