# When does the HttpImageSource Changed event triger?

**URL:** https://forums.fusetools.com/t/when-does-the-httpimagesource-changed-event-triger/3291
**Category:** How-to Discussions
**Created:** [January 2, 2017, 11:03am UTC](https://forums.fusetools.com/t/when-does-the-httpimagesource-changed-event-triger/3291 "2017-01-02T11:03:14Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Martins\_Balodis](https://yyz1.discourse-cdn.com/flex035/user_avatar/forums.fusetools.com/martins_balodis/32/213_2.png) [@Martins\_Balodis](https://forums.fusetools.com/u/Martins_Balodis)
#### Post date: [January 2, 2017, 11:03am UTC](https://forums.fusetools.com/t/when-does-the-httpimagesource-changed-event-triger/3291/1 "2017-01-02T11:03:14Z")

</div>

Hello! I am looking for a way to know when an Image is completely loaded. HttpImageSource.Changed seemed like a solution. Unfortunately it isn’t triggered at all. Is the Changed event the right way to do this or is it meant for something else? Here is a sample code that I am using:

```auto
<JavaScript>
function imageChanged() {
	console.log(123);
}

module.exports = {
	imageChanged: imageChanged
}
</JavaScript>

<Image Clicked="{imageChanged}">
    <HttpImageSource Url="http://lorempixel.com/360/360/?93726" Changed="{imageChanged}" />
</Image>

```

---

<div class="post-metadata">

### Author: ![Anders\_Bondehagen](https://yyz1.discourse-cdn.com/flex035/user_avatar/forums.fusetools.com/anders_bondehagen/32/98_2.png) [@Anders\_Bondehagen](https://forums.fusetools.com/u/Anders_Bondehagen)
#### Post date: [January 20, 2017, 12:44pm UTC](https://forums.fusetools.com/t/when-does-the-httpimagesource-changed-event-triger/3291/2 "2017-01-20T12:44:52Z")

</div>

That depends on what you want to do. Usually the [WhileBusy trigger](https://www.fusetools.com/docs/fuse/triggers/whilebusy) cover many cases.

---

<div class="post-metadata">

### Author: ![edA-qa\_mort-ora-y](https://yyz1.discourse-cdn.com/flex035/user_avatar/forums.fusetools.com/eda-qa_mort-ora-y/32/124_2.png) [@edA-qa\_mort-ora-y](https://forums.fusetools.com/u/edA-qa_mort-ora-y)
#### Post date: [January 20, 2017, 12:51pm UTC](https://forums.fusetools.com/t/when-does-the-httpimagesource-changed-event-triger/3291/3 "2017-01-20T12:51:10Z")

</div>

There is also a `Completed` trigger in the upcoming release.
