PopUp

G

GWB

FP2000
I have a map with regional hotspots and want to pop up a small window (maybe
300 x 200 with the reps in the regional area when the hotspot is clicked.
It should pop up over the map with a close button returning the user to the
map.

I now have a full page but with the small number of reps right now it looks
overdone, I would like something a little less flashy.

TIA, GWB .
 
K

Kevin Spencer

Hi GWB,

What the heck are "reps?"

In any case, you can use the JavaScript window.open() method to open the new
window. It is documented here:

http://msdn.microsoft.com/workshop/author/dhtml/reference/methods/open_0.asp?frame=true

The hotspots are hyperlinks, and you can use JavaScript in hyperlinks to run
a JavaScript when the link is clicked. The basic syntax is:

<a href="javascript:someFunction();">whatever</a>

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
You can lead a fish to a bicycle,
but it takes a very long time,
and the bicycle has to *want* to change.
 
R

Rob Giordano \(Crash\)

reps - usually refers to representatives..like: sales "reps" - guessing this
context it's probably a map of sales persons in a geographic area.

?

| Hi GWB,
|
| What the heck are "reps?"
|
| In any case, you can use the JavaScript window.open() method to open the
new
| window. It is documented here:
|
|
http://msdn.microsoft.com/workshop/author/dhtml/reference/methods/open_0.asp?frame=true
|
| The hotspots are hyperlinks, and you can use JavaScript in hyperlinks to
run
| a JavaScript when the link is clicked. The basic syntax is:
|
| <a href="javascript:someFunction();">whatever</a>
|
| --
| HTH,
|
| Kevin Spencer
| Microsoft MVP
| .Net Developer
| You can lead a fish to a bicycle,
| but it takes a very long time,
| and the bicycle has to *want* to change.
|
| | > FP2000
| > I have a map with regional hotspots and want to pop up a small window
| > (maybe
| > 300 x 200 with the reps in the regional area when the hotspot is
clicked.
| > It should pop up over the map with a close button returning the user to
| > the
| > map.
| >
| > I now have a full page but with the small number of reps right now it
| > looks
| > overdone, I would like something a little less flashy.
| >
| > TIA, GWB .
| >
| >
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top