Re: Can pseudo-url in image maps work?
[ Follow Ups ] [ Post Followup ] [ Intranet eXchange ] [ IDM Home ]
Posted by Chris Davies on August 25, 2000 at 7:24:31:
In Reply to: Can pseudo-url in image maps work? posted by Tana on August 24, 2000 at 15:25:44:
I used the following test code and it worked in both IE and Netscape.... <html> <head> <title>Psuedo URL Test page</title> <script language="javascript"> function test_func(){ alert ("WOW! It works!"); } </script> </head> <body> <map name="Map"><area shape="rect" coords="1,1,153,36" href="javascript:test_func()"></map> <img src="image.gif" usemap="#Map" border="0"> </body> </html>
Follow Ups:
|