Hotspot button

C

Cindy

hi,

Can someone tell me what is a hotspot button? Is it done using javascript?

Thanks.

Regards,
Cindy
 
G

Grant Wagner

Cindy said:
hi,

Can someone tell me what is a hotspot button? Is it done using javascript?

Thanks.

Regards,
Cindy

I have no idea what a "hotspot button" is. It sounds like someone creating
jargon to confuse and impress people.

There are many ways to create simple links in HTML <a href...>link text</a>
that don't require any JavaScript, buttons in HTML <input type="button"
onclick="do something in javascript" ...> that always require JavaScript,
links that look like buttons that don't require JavaScript, links that do
require JavaScript, buttons that submit a form that don't require JavaScript,
image maps, etc, etc, etc.

Perhaps if you told us specifically what you want to do, we can tell you
whether what you want to achieve can be achieved with or without JavaScript.

--
| Grant Wagner <[email protected]>

* Client-side Javascript and Netscape 4 DOM Reference available at:
*
http://devedge.netscape.com/library/manuals/2000/javascript/1.3/reference/frames.html

* Internet Explorer DOM Reference available at:
*
http://msdn.microsoft.com/workshop/author/dhtml/reference/dhtml_reference_entry.asp

* Netscape 6/7 DOM Reference available at:
* http://www.mozilla.org/docs/dom/domref/
* Tips for upgrading JavaScript for Netscape 6/7 and Mozilla
* http://www.mozilla.org/docs/web-developer/upgrade_2.html
 
E

Evertjan.

Cindy wrote on 25 jul 2003 in comp.lang.javascript:
Can someone tell me what is a hotspot button? Is it done using
javascript?


A "hotspot button" Google 573 hits !

seems to be an area of a window/image/etc that acts in a seperate way on
click or mouseover or whatever.

A clientside or serverside html mapping could provide such spots.

M$ Frontpage even has a "Polygonal Hotspot button" or so they say, I
wouldn't come near it, to make such spots.

Is it done using javascript?

No, HTML mostly:

<map name="abc">
<area onMouseOver="showpopup(this)" shape="rect"
coords="137,99,256,174" nohref>
</map>

<img src="abc3.jpg" usemap="#abc">
 

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

Members online

Forum statistics

Threads
474,077
Messages
2,570,566
Members
47,202
Latest member
misc.

Latest Threads

Top