Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to listen for an <image> load event in SVG? If yes, how to do this?

share|improve this question
Does "real" mean the same as "possible"? – Juhana Jul 9 '12 at 7:51
Yes, real == possible – Rustam Jul 9 '12 at 7:53
And by <image> you mean <img>? – Juhana Jul 9 '12 at 7:54
SVG <image> tag, NOT any html tags – Rustam Jul 9 '12 at 7:55

1 Answer

up vote 6 down vote accepted

Yes it's possible.

In markup:

<image xlink:href="example.png" width="10" height="10" 
       onload="alert('loaded')"/>

In script:

<script>
  var img = document.createElementNs("http://www.w3.org/2000/svg", "image");
  img.addEventListener('load', function() { alert('loaded'); });
  // or alternatively:
  // img.onload = function() { alert('loaded'); }
  img.width.baseVal.value = 100;
  img.height.baseVal.value = 100;
  img.href.baseVal = "example.png";
</script>
share|improve this answer
I'm unable to get this working, neither with markup nor script; are you able to provide an example? – Richard May 9 at 9:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.