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 made a html/script that draws an image and on mouse hover, images over top and clearing them when mouse is moved away from the rectangular region.

Works 1000000000% in FireFox :P, any other browser? nope not a chance.

But I am particularly interested with the fact that it shows only white on Safari in iPhone 4 iOS 4.3 and iPad 2 iOS 4.3.

Is anyone aware of any considerations or changes that need to be made to make canvas and jscript in general behave as intended?

Some small portions:

window.onload = function()
{
 canvas = document.getElementById("canvas");
 context = canvas.getContext("2d");

 context.drawImage(map, 0, 0);
};

There is obviously considerably more, but I would only see the syntax being an issue, I doubt Safari and FireFox disagree with each other on that?

Any help is greatly appreciated (from my searches Safari supposedly supports canvas).

share|improve this question
I should add I have it live here for testing: clwsoft.com/valor_map – GrimR Apr 14 '11 at 9:35
Can you post a SSCCE? Possibly on http://jsFiddle.net/. – Joachim Sauer Apr 14 '11 at 9:37
It's fairly small and view source on web browser? I haven't removed anything to test a minimal version, I am just assuming Safari on these devices does not like the way I use the canvas functionality as it is not drawing even the map, which is the first thing it should do, the only external files are 2 png's, less than 100kb combined. I'm also not familier with this SSCCE or jsFiddle lol. – GrimR Apr 14 '11 at 11:20
Sorry, didn't parse your comment ... that should be simple enough. – Joachim Sauer Apr 14 '11 at 11:23
It is possible that context.drawImage(map, 0, 0); isn't happening on iOS becase map has not completed its onload yet. It is also possible that handleHover never fires on iOS since there may be no onmousemove. – Simon Sarris Apr 14 '11 at 13:34
show 1 more comment

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.