Why I can't make the imagemapster to work?

32 views Asked by At

The following image-mapster doesn't work. Can you help me to find issue here.

<html lang="en">
<head>
    <meta charset="UTF-8">
    <script
        type="text/javascript"
        src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js">
    </script>
    <script language="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/imagemapster/1.5.4/jquery.imagemapster.min.js"></script>

</head>
<body>
   <section>
            <img src="https://drneetikaushik.com/wp-content/uploads/2022/10/chakras-7271423_960_720.jpg" alt="Chakras" id="chakra-images" class="center" usemap="#image-map">

            <map name="image-map">
                <area target="" alt="Root Chakra" title="Root Chakra" href="#" coords="90,100,10" shape="circle">
                <area target="" alt="Sacred Chakra" title="Sacred Chakra" href="#" coords="90,90,10" shape="circle">
                <area target="" alt="Solar-Plexus Chakra" title="Solar-Plexus Chakra" href="#" coords="90,65,10" shape="circle">
                <area target="" alt="Heart Chakra" title="Heart Chakra" href="#" coords="90,50,10" shape="circle">
                <area target="" alt="Throat Chakra" title="Throat Chakra" href="#" coords="90,40,10" shape="circle">
            </map>


        </section>
</body>
</html> 

I also add the JSfiddle link here that you can run with JS and CSS file.

0

There are 0 answers