I'm trying to make use an image map when a certain picture is clicked. Here's what I've got so far:
<A HREF="#"
ONMOUSEOVER="changeImages('strategic_plans', 'images/strategic_plans_over.gif'); return true;"
ONMOUSEOUT="changeImages('strategic_plans', 'images/strategic_plans.gif'); return true;"
ONCLICK="changeImages('strategic_plans', 'images/strategic_plans_click.gif');">
This changes image.gif to image_click.gif, but I want image_click.gif to be able to use an image map. I know I can do it easily by just making another html file with image_click.gif in place of image.gif then using an image map will be easy. But I rather stay away from making two html files.
Hope this isn't too confusing. Thanks for any help
<A HREF="#"
ONMOUSEOVER="changeImages('strategic_plans', 'images/strategic_plans_over.gif'); return true;"
ONMOUSEOUT="changeImages('strategic_plans', 'images/strategic_plans.gif'); return true;"
ONCLICK="changeImages('strategic_plans', 'images/strategic_plans_click.gif');">
This changes image.gif to image_click.gif, but I want image_click.gif to be able to use an image map. I know I can do it easily by just making another html file with image_click.gif in place of image.gif then using an image map will be easy. But I rather stay away from making two html files.
Hope this isn't too confusing. Thanks for any help