PDA

View Full Version : HTML Link Question


Sentec
6-30-02, 06:34 PM
Heres a sample of what i am trying to do..
----------------------------------------------------------------------------
<html>

<head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 1</title>
</head>

<body>
<SCRIPT language="JavaScript">
<!--
function chat() {
window.open("http://www.viperracingteam.com/cgi-bin/chat/chat.cgi","chat","toolbar=no,scrollbars=yes,directories=no, status=yes,menubar=no,resizable=no,width=700,heigh t=500")
}
// --></SCRIPT>

<a href="chat" target="chat"><function="chat()">CHAT</a></b>
</body>

</html>
----------------------------------------------------------------------------

I want it so when you click on, CHAT, it just opens a window... How do i make the link go to the function chat()?? Thanks!

(jj)
6-30-02, 06:53 PM
You could try <a href="chat" target="_blank"> or <a href="chat" target="_new">




Just my "For What It's Worth"

Sentec
6-30-02, 06:58 PM
that didnt work

Sentec
6-30-02, 07:04 PM
i need this asap if anyone can help, thanks!

Sentec
6-30-02, 07:29 PM
nm, i got it :)