Карта изображений работает только в Google Chrome

В настоящее время я пытаюсь заставить эту карту изображений работать:

<img src="products1.png" usemap="products1-map" style="margin-bottom: 36px" />

<map id="products1-map" name="products1-map">

    <!-- Some comment -->

    <area shape="rect" coords="234,261,315,281" href="#" alt="Test">
    <area shape="rect" coords="218,282,314,318" href="#" alt="Test">

    <area shape="rect" coords="441,243,537,279" href="#" alt="Test">
    <area shape="rect" coords="416,278,512,314" href="#" alt="Test">

    <!-- Some comment -->

    <area shape="rect" coords="229,463,325,499" href="#" alt="Test">
    <area shape="rect" coords="218,500,314,536" href="#" alt="Test">

    <area shape="rect" coords="425,461,521,497" href="#" alt="Test">
    <area shape="rect" coords="416,497,512,533" href="#" alt="Test">

    <area shape="rect" coords="622,463,718,499" href="#" alt="Test">
    <area shape="rect" coords="615,495,711,531" href="#" alt="Test">

    <!-- Some comment -->

    <area shape="rect" coords="230,686,326,722" href="#" alt="Test">
    <area shape="rect" coords="216,722,312,758" href="#" alt="Test">

</map>

<img src="some-image1.png" style="float: right"/>

<img src="some-image2.png" style="margin-bottom: 16px"/>

<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p> 

Он отлично работает в Chrome, но не в IE или FF.

Как бы вы устранили такую ​​проблему?

Любая помощь высоко ценится :)


person timkl    schedule 26.12.2011    source источник


Ответы (1)


Хорошо, я нашел вашу проблему, вы пропустили # о usemap имени, здесь:

<img src="img/da.png" usemap="#products1-map" style="margin-bottom: 36px" />

Надеюсь теперь все работает :)

person Al-Mothafar    schedule 26.12.2011