HTML/CSS Troubleshooting HTML Image Area Map Issues

AI Thread Summary
The discussion revolves around issues with creating an image map using HTML. The main problem is that the clickable area defined by the <area> tag is not functioning correctly; clicking on it does not trigger any action, and the cursor does not change to indicate interactivity. A key point raised is a misspelling of the attribute "usemap," which should be corrected to ensure proper functionality. A reference to a W3Schools example is provided as a resource for better understanding how to implement image maps correctly.
JamesU
Gold Member
Messages
821
Reaction score
3
I'm trying to create an area mep for an image, but it's not working right. any help?
<html>
<head>
<title>Enter through the door</title>
</head>
<body>
<map name="amap">
<area shape="rect" coords="474,202,541,358" href="../leveltwo.htm">
</map>
<center><img src="http://urlofsomeimage/image.jpg" border="0" usemep="#amap"></center>
</body>
</html>


and no, that's not the url of the image
 
Last edited by a moderator:
Technology news on Phys.org
how about telling us what the problem is?
 
well, when I click the area it doesn't work, The cursor doesn't change, and if you clik nothing happens
 
You misspelled usemap.
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
I have a quick questions. I am going through a book on C programming on my own. Afterwards, I plan to go through something call data structures and algorithms on my own also in C. I also need to learn C++, Matlab and for personal interest Haskell. For the two topic of data structures and algorithms, I understand there are standard ones across all programming languages. After learning it through C, what would be the biggest issue when trying to implement the same data...

Similar threads

Replies
9
Views
2K
Replies
14
Views
3K
Replies
2
Views
1K
Replies
2
Views
2K
Replies
5
Views
2K
Replies
3
Views
2K
Replies
8
Views
2K
Replies
3
Views
2K
Replies
4
Views
3K
Replies
3
Views
3K
Back
Top