No java script events are triggering inside ng-show div in my code. Please find my code in the below plnkr link.
http://plnkr.co/edit/kGqk8x?p=preview
After loading the data from json i am making ng-show as true. But inside the div i have a button which is not allowing to do any of the js events. It looks like a image for me. Please help me to know where i am going wrong.
Here is my code
<body ng-controller="ArtSearch">
<div ng-show="isShow">
<table class="tbl_cls">
<tr ng-repeat="item in names">
<td>{{item.artistName}}</td>
<td>{{item.trackName}}</td>
<td>{{item.artworkUrl30}}</td>
<td>{{item.shortDescription}}</td>
</tr>
</table>
<div align="center">
<button value="asdf"></button>
<a href="#" class="button">Search</a>
</div>
</div>
<div id="searchForArt">
//some code
<div align="center">
<a href="#searchForArtist" class="button" ng-click="searchCall()">Search</a>
</div>
</div>
</body>
[1]: http://plnkr.co/edit/kGqk8x?p=preview