Execute
<!DOCTYPE html> <html> <head> <title>Wikitechy AngularJS Tutorial</title> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js"></script> </head> <body ng-app=""> <h3>ng-selected directive in AngularJS Tutorial </h3> Click here to Select CSS Tutorials: <input type="checkbox" ng-model="value"> <p>Select Tutorial</p> <select> <option>HTML</option> <option ng-selected="value">CSS</option> <option>PHP</option> </select> </body> </html>
www.wikitechy.com © Copyright 2016. All Rights Reserved.