I'm using the following code to load an image and associated image map:
<span><%= image_tag bookcase.image_url.to_s, :usemap => "#shelfmap" %></span>
<map name="#shelfmap">
<area shape="rect" coords="0,0,500,100" href="\" alt="test" />
</map>
The image map loads in Google Chrome, but for some reason it doesn't display in Firefox. I checked the source code and the image does have a usemap parameter set to "#shelfmap". I'm not sure what else could be the problem.