Problem: I am having a hard time to replace"& ;" to &. Is their a way to use javascript to replace the ampersand to &.
<div class="col-md-4 no-margin padding" id="change">
<strong>Specialty: </strong>{{e.Specialty}}
</div>
I would like to replace the "& ;" when it grabs the data from the database to "&".
So currently, it will display "Nursing & ; Doctor" rather then "Nursing & Doctor"
How can I achieve this using replace. I have tried ng-show, Santize, and ng-bind-html but have not worked out for me.