> For the complete documentation index, see [llms.txt](https://javascriptuse.gitbook.io/advanced/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://javascriptuse.gitbook.io/advanced/lam-cach-nao-de-ngan-su-kien-onclick-cua-cha-me-kich-hoat-khi-nhap-vao-con-parent-child-ok.md).

# Làm cách nào để ngăn sự kiện onclick của cha mẹ kích hoạt khi nhấp vào con parent, child ? (ok)

https\://stackoverflow\.com/questions/1369035/how-do-i-prevent-a-parents-onclick-event-from-firing-when-a-child-anchor-is-cli

Dùng chung cho các thẻ chứ không riêng gì thẻ a 😎

```javascript
$('.tbody__name').click(function(e) {
    e.stopPropagation();
});
Or
$("#clickable a").click(function(e) {
   // Do something
   e.stopPropagation();
});
```
