Online HTML image map creator


Settings Remark
onMouseOver This Javascript event handler denotes that something will happen when the mouse passes over the region.

Examples:
onMouseOver="window.status='Please click me.'; return true"
onMouseOver="document.bgColor='#FF0000'"
onMouseOver="parent.location='https://www.mobilefish.com'"
onMouseOver="alert('Hello world!')"
onMouseOver="history.go(-1)"
onMouseOver="
parent.location='mailto:[email protected]?subject=My demo'
"
onMouseOver="document.image.src ='demo.gif'"
onMouseOver="popwin=window.open('../../images/mobilefish_logo.gif','Mobilefish',
'scrollbars=yes,left=5,top=5,location=no,resizable=yes,toolbar=no,menubar=no,
status=no,width=272,height=90');popwin.focus();
"

Note 1: All entered javascript code is automatically enclosed by double quotes.

Note 2: If the onMouseOver event is used, you can disable the "URL" by entering:
javascript:void(null);