[Solved] Add font-awesome icon to option in select [duplicate]
Since font-awesome icons are fonts, they can be added to options by Unicode: <script src=”https://unpkg.com/angular/angular.js”></script> <link rel=”stylesheet” href=”https://unpkg.com/font-awesome/css/font-awesome.css”> <body ng-app> <i class=”fa fa-camera-retro”></i> fa-camera-retro<br> <select ng-model=”choice” class=”fa”> <option value=””>Choose</option> <option value=” camera”> camera</option> <option value=” bell”> bell</option> <option value=” bicycle”> bicycle</option> </select> <br> Choice = <span class=”fa”>{{choice}}</span> <br><span class=”fa”>--</span> </body> The DEMO on PLNKR The … Read more