PDA

View Full Version : Java "Pop-up" Questions


auteur
12-18-1998, 11:00 AM
I saw FutureQuest has a pop-up for description products listings. I was wanting to do something similar for my services listing. So a potential customer can click on a graphic to see what is included in the package.

Now my 3 questions are:

1. Is this Java Script?

2. Have you experienced any problems from potiential customers using older browsers [or those specified by the user to not read Java]?

3. Where can I get the script? http://www.aota.net/ubb/smile.gif

Thank you in advance.

Deb
12-18-1998, 11:23 AM
Within the <head></head> tags ...

<script LANGUAGE="JavaScript">

<!-- Hide this script from incompatible Web browsers!
function service(name) {
win = window.open(name, "WIN",
"status=no,toolbar=no,location=no,menu=no,scrollbars=yes,width=383 ,height=194");
}
// Hide this script from incompatible Web browsers! -->

</script>

Then where you want the links do them this way:

<a HREF="#" onClick=service("PageName.html");>Link Name Here<a>

Be sure to create the page you want pulled up..

Tis Javascript not Java http://www.aota.net/ubb/wink.gif

Hope this helps
Deb



------------------
Unlocking the Power of the Internet!
www.FutureQuest.net (http://www.FutureQuest.net)

auteur
12-19-1998, 11:42 AM
Thanks Deb for your assistance. I did know that this is Java Script not Java...I use Netscape Communicator 4.5 lastest version and it has a place where you can mark to "Enable Java Script" under 'Edit, Preferences, Advanced'. Maybe most people don't know about this yet.

Anyhow, thanks again.