javascript - Chrome is showing the angular expression instead of value. Firefox displays the correct value -
showing angularjs expression in dom instead of value in chrome browser showing correct value in firefox.
in chrome shows like:
<div id="{profile.id}" data-id="{{profile.id}}">some text</div>
in firefox displays correctly:
<div id="1234" data-id="1234">some text</div>
how solve chrome?
Comments
Post a Comment