vote up 2 vote down star

I have a page which works fine in Firefox and Safari on OS X and Chrome on Windows.

The expected behaviour is that when you hover over one of the blue boxes an icon will appear to indicate whether or not the box is editable. If it is editable (pencil icon) then clicking it should bring up an overlay with an editing box.

In IE8 (and below) clicking the blue boxes does nothing—anyone have any idea why?

URL: http://www.quis.cc/bmxmusic/

flag
Rather than pasting links, please create a small, self-contained test case and post that. – T.J. Crowder Aug 20 at 15:08
@T.J Crowder whats up with the live url? It is easier to see the issue. – redsquare Aug 20 at 15:23

3 Answers

vote up 1 vote down

Turns out that making a $.post request to page.php#anchor works fine in most browsers, but in IE it gets encoded to page.php%23anchor which causes a 404.

link|flag
vote up 0 vote down

Your $.post is failing in ie with a 404. See below.

alt text

link|flag
That Fiddler tool is really useful. I hardly ever have to use Windows so it's the kind of thing I wouldn't have otherwise known about. Gonna look into the problem now, thanks! – quis Aug 20 at 15:47
there are a few of them - webscarab (java based so x-platform), wireshark etc – redsquare Aug 20 at 15:51
vote up 0 vote down

IE is encoding your string in URL encoding. You may have to escape the # character when the client is using IE or see if it is possible to force IE to use a different encoding for the URL string so that it doesn't cause this problem. I just tell people to use anything but IE and make my code work on every other browser ;) so I can't tell you exactly how to do this from my own experience... good luck!

link|flag

Your Answer

Get an OpenID
or

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