Below is the code :
<div ng-repeat="u in users">
<!--I will always receive a URL -->
<div ng-if="u.imageUrl"> <!--Here I want to check if the provided URL is active-->
<!--Only seen if image url is live and active -->
</div>
<div>
<!--do some other things-->
</div>
</div>
e.g. : http://www.pacinno.eu/wp-content/uploads/2014/05/placeholder1.png is active URL but http://www.pacinno.eu/wp-content/uploads/2014/05/placeholder11.png is not.
Also users may have many records as signin increases.
ng-src. But what if I want to hide my div ?