# Which part of the code executes when we click a link on a post?

**URL:** https://meta.discourse.org/t/which-part-of-the-code-executes-when-we-click-a-link-on-a-post/75350
**Category:** Development
**Created:** [2017年十二月4日 15:10 UTC](https://meta.discourse.org/t/which-part-of-the-code-executes-when-we-click-a-link-on-a-post/75350 "2017-12-04T15:10:35Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Sudaraka](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/sudaraka/32/68401_2.png) [@Sudaraka](https://meta.discourse.org/u/Sudaraka)
#### Post date: [2017年十二月4日 15:10 UTC](https://meta.discourse.org/t/which-part-of-the-code-executes-when-we-click-a-link-on-a-post/75350/1 "2017-12-04T15:10:35Z")

</div>

I need to know which part of the discourse source code is ignited when we click an external link in a discourse post. I had no luck going through previous threads

---

<div class="post-metadata">

### Author: ![vinothkannans](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/vinothkannans/32/86465_2.png) [@vinothkannans](https://meta.discourse.org/u/vinothkannans)
#### Post date: [2017年十二月4日 15:54 UTC](https://meta.discourse.org/t/which-part-of-the-code-executes-when-we-click-a-link-on-a-post/75350/2 "2017-12-04T15:54:40Z")

</div>

[https://github.com/discourse/discourse/blob/master/app/assets/javascripts/discourse/components/discourse-topic.js.es6#L51-L64](https://github.com/discourse/discourse/blob/master/app/assets/javascripts/discourse/components/discourse-topic.js.es6#L51-L64)

Also, have a look [here](https://github.com/discourse/discourse/blob/master/app/assets/javascripts/discourse/components/links-redirect.js.es6#L8) and [here](https://github.com/discourse/discourse/blob/master/app/assets/javascripts/discourse/lib/click-track.js.es6).

---

<div class="post-metadata">

### Author: ![Sudaraka](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/sudaraka/32/68401_2.png) [@Sudaraka](https://meta.discourse.org/u/Sudaraka)
#### Post date: [2017年十二月7日 05:00 UTC](https://meta.discourse.org/t/which-part-of-the-code-executes-when-we-click-a-link-on-a-post/75350/3 "2017-12-07T05:00:44Z")

</div>

Thank you @vinothkannans
