<template name="actionTemplate">
{{#each action}}
<button class="myButton" id={{_id}}>btn</button>
{{> action}}
{{/each}}
</template>
<template name="action">
<div class="sct" id={{_id}}>
some text has to display
</div>
</template>
How can I implement a click function to hide the "btn" button in the code above?