Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

JavaScript Forum


You are currently viewing our JavaScript Forum as a guest. Please register to participate.
Login



Reply
Javascript Popup Window
Old 08-12-2006, 09:07 PM Javascript Popup Window
Skilled Talker

Posts: 50
Trades: 0
I have an image map that I have created using Adobe Golive CS and I have a popup window that needs to open when a particular portion of the image map is clicked. The problem is I do not know how to code the link on the image map to call the javascript. Can someone help me?
tm1274 is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 08-13-2006, 09:37 PM Re: Javascript Popup Window
Oneway's Avatar
Skilled Talker

Posts: 71
Trades: 0
The html code for the image map would look something like this:
HTML Code:
<IMG SRC="knoppenbalk.gif" ALT="Knoppenbalk" WIDTH="390" HEIGHT="24" BORDER="0" USEMAP="#knoppenbalk">

<MAP NAME="knoppenbalk">
<AREA SHAPE="rect" COORDS="0,0,77,24" HREF="map1a.html">
<AREA SHAPE="rect" COORDS="78,0,155,24" HREF="map1b.html" ALT="Mogelijkheid 2">
<AREA SHAPE="rect" COORDS="156,0,233,24" HREF="map1c.html" ALT="Mogelijkheid 3">
<AREA SHAPE="rect" COORDS="234,0,311,24" HREF="map1d.html" ALT="Mogelijkheid 4">
<AREA SHAPE="rect" COORDS="312,0,390,24" HREF="map1e.html" ALT="Mogelijkheid 5">
</MAP>
Now, inside AREA tags you add an onclick eventhandler that will open the popup for you:
HTML Code:
<AREA SHAPE="rect" COORDS="0,0,77,24" HREF="map1a.html" onclick="window.open('popup.html', 'popup_window', 'width=300,height=300'); return false">
replace the popup.html with whatever file you want opened.

Last edited by Oneway; 08-13-2006 at 09:38 PM.. Reason: Bad pasting
Oneway is offline
Reply With Quote
View Public Profile
 
Old 08-15-2006, 04:15 PM Re: Javascript Popup Window
Skilled Talker

Posts: 50
Trades: 0
Thanks, I will try that today
tm1274 is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Javascript Popup Window
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.11868 seconds with 12 queries