How to bind html content using scope variable (without using ng-bind-html-unsafe) in angularjs
<div ng-controller="dataController">{{test}}</div>
$scope.test = "<div>Html content</div>"
How to bind html content using scope variable (without using ng-bind-html-unsafe) in angularjs
<div ng-controller="dataController">{{test}}</div>
$scope.test = "<div>Html content</div>"