When I try to display an anchor within an input field? I tried the below code but the compiled html does not display. It just displays the html with vm.url as it is.
HTML template:
<td class="md"><input type="text" value="{{vm.getUrl()}}" size="60"></input></td>
Controller code
vm.url = '<a href="https://bankofamerica.com">https://bankofamerica.com</a>';
vm.getUrl = function(){
return vm.url;
}