This is the first time to use angular js.
The following code gives desired output:
<a href="http://www.example.com/xyz/{{life.animal}}/" target="_blank">Hello </a>
It opens a page: http://www.example.com/xyz/cat/
But the below code is not working as expected:
<a href='javascript:void(0)' onClick='javascript:window.open("http://www.example.com/xyz/{{life.animal}}/","Windows","width=1150,height=450,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,titlebar=no,location=no,directories=no,status=no");return false')'>Hello </a>
It opens page: http://www.example.com/xyz/{{life.animal}}/
I think I am doing some basic mistake but please help me.