In a component I have something like this:
<a class="btn" [attr.href]="movie.imdbUrl" target="_blank" >IMDb</a>
but when I click on it nothing happens.
movie.imdbUrl
points to "http://www.imdb.com/title/tt2305051/" and I thought it would be equivalent to:
<a class="btn" href="http://www.imdb.com/title/tt2305051/" target="_blank" >IMDb</a>
What am I missing?