I have a image with image map
<img src="~/VDNP/VC1_E05_20190115114134.jpg" class="img-responsive" usemap="#ImageAttribute" id="PartImage">
<map name="ImageAttribute">
<area shape="poly" coords="206,18,223,19,222,36,205,36" href="#" alt="12101-SE1-0002-VN" title="12101-SE1-0002-VN">
<area shape="poly" coords="393,183,410,183,410,203,388,206" href="#" alt="12191-SE1-0000-VN" title="12191-SE1-0000-VN">
<area shape="poly" coords="163,270,180,270,181,289,162,288" href="#" alt="90081-VA2-0000" title="90081-VA2-0000">
<area shape="poly" coords="8,201,30,201,28,235,9,235" href="#" alt="90702-VA2-0001" title="90702-VA2-0001">
</map>
And a table show details of image map.
+-------+--------+-------------------+----------+
| Model | PageNo | PartNo | Quantity |
+-------+--------+-------------------+----------+
| VC1 | E05 | 12101-SE1-0002-VN | 1 |
| VC1 | E05 | 12191-SE1-0000-VN | 1 |
| VC1 | E05 | 90081-VA2-0000 | 1 |
| VC1 | E05 | 90702-VA2-0001 | 2 |
+-------+--------+-------------------+----------+
I have a href
on image map, after click on this, the table will show only one row.
I don't know how to handle click event on image map then the table will show only one row on Javascript?
Any ideas for me?