• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

JavaScript Help

payjo

Senior member
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
 
Back
Top