I have a variable in scope result.questionText it contains <i>How many times are the hands of a clock </i>at right angle in a day?<audio controls ng-src="media/abc.mp3"></audio>
,i want to display html audio component instead of that audio tag so i write like this in my html page,
<span class="row pull-left" ng-bind-html="result.questionText"></span>
but it is showing text before audio tag but not showing audio component. I have tried to put img tag and it is working fine.
Any Idea?