I'm new with angular, i was creating an app with where you can search a character while typing in input box. now while typing the name let say "superman" , you will see a broken images until you type the complete name, once you type the full name "superman" you will the images otherwise just broken images.
I read that using ng-src will solve this issue, but its also not working, here is my code and im using crome.
<!doctype html>
<html>
<head>
<title> Project Zippy</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
</head>
<body>
<header>
<h1> Zippy...</h1>
</header>
<section>
<div ng-app="">
<input type="text" ng-model="superhero"><br />
<img ng-src="images/{{superhero}}_tn.png">
</div>
</section>
<script src="script/angular.min.js"></script>
<script src="script/angular-route.min.js"></script>
</body>
</html>