Html – Font Awesome icon inside of HTML input with Angular working

angularjsfont-awesomehtml

I am trying to make this, but not having much luck:

<input type="button" class="naviaBtn naviaBlue" ng-show="ppt.Globals.hasDebitCard" ng-click="alertShow = (alertShow == 2 ? -1 : 2)"  value="outstanding swipes"><i class="fa fa-exclamation-circle" ng-show="ppt.Swipes != null"></i></input>

Problem didnt exist until I knew I need the icon, but being HTML compliant, I cannot make this work that great. Tried switching the button input type to an anchor with the same logic, but a no go. Ideas please?

Thanks much.

Best Answer

Use Button instead of Input as below

<button class="naviaBtn naviaBlue" ng-show="ppt.Globals.hasDebitCard" ng-click="alertShow = (alertShow == 2 ? -1 : 2)"  value="outstanding swipes"><i class="fa fa-exclamation-circle" ng-show="ppt.Swipes != null"></i></button>

With Input you are limited to text whereas Button can have chilren like img or i