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.

I am trying to embed an Image using the below code

var img = new Image(), src = "image.jpg";                
img.onload = function () {
   if ((img.width + img.height) % 20 != 0) {
        return false
   };
   var paper = Raphael( 10 , 10, img.width, img.height);
   var insert = paper.image(src, 10, 10, img.width, img.height);
};
img.src = src;

This is embedding the image with actual dimensions of image in Google Chrome( I have only Chrome except IE). But When I open the same page in IE, it does not embed the image with actual fitting... Please refer images for further info.ChromeIE

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.