Home
Developer Blog
Ajax effects
CSS examples
Freelance jobs
Hot IT Jobs
Hot scripts
Code samples
Web hosting directory
Lotus Notes FAQ
See the new scripts recently added to Dynamic Drive.
Click here
.
Original, practical
CSS codes and examples
such as CSS menus for your site.
Search code samples
Keyword
All Categories
ASP
CSS
Dhtml
Html
Javascript
PHP
Code Samples
ASP
CSS
Dhtml
Html
Javascript
PHP
LOGIN HERE
Username
Password
Signup Now
Forgot Password
Verify Signup
Javascript >> Images
Can you use an imagemap with onClick?
Visitor Ratings (2) :
Description
Yes, as the following shows
Code
Select All
<map name="image-map1"> <area shape="rect" coords="15,15,85,85" href="default.htm" onClick="alert('square');return false"> <area shape="rect" coords="93,15,110,85" href="default.htm" onClick="alert('rectangle');return false"> <area shape="circle" coords="150,50,35" href="default.htm" onClick="alert('circle');return false"> </map> <img src="image.gif" border=0 width=200 height=100 usemap="#image-map1">
Rate this Resource
0
1
2
3
4
5
6
7
8
9
10