I have many form in my angular app like this
<form ng-submit="" ng-repeat="app in apps">
<div class="container">
<div id="single-app" >
<div class="checkbox">
<label><input type="checkbox" id="check-app">{{app.name}}</label>
</div>
<img src="{{app.url}}" height="140" width="140">
<div id="description">
<textarea></textarea>
</div>
</div>
</div>
</form>
I want all text area hidden default and specific show text area when i checked box
I tried this jquery code but doesn't work
$(document).ready(function(){
$("#description").hide();
$('#check-app').click(function(){
$('#description').fadeToggle();
})
});