Click to See Complete Forum and Search --> : uuuuuuhhh.................


TheNewGuy07
09-12-2003, 03:59 PM
what in the heck is a javascript and where do i place it? I know you guys know a lot more than me about this i run on XP and have charter internet. :confused: :confused: :confused:

s0ms0m
09-12-2003, 04:44 PM
<html>
<head>
<script language="javascript">
<!--
//-->
</script>
</head>

In between the script tags is where the actual javascript coding goes.

DaveSW
09-13-2003, 03:13 PM
why not go to http://javascript.internet.com and see what's possible.

Charles
09-14-2003, 07:27 AM
Originally posted by s0ms0m
<html>
<head>
<script language="javascript">
<!--
//-->
</script>
</head>

In between the script tags is where the actual javascript coding goes. That's wrong on so many points that I'm not going to list them.

pyro
09-14-2003, 08:44 AM
Since this is a JavaScript question, it has been moved to that section..

Brian4120
09-20-2003, 12:55 PM
ok.... my basic understanding of addin javascript (only started using last month)


<head>
<title>Page Title</title>
<script language="javascript">
<!--
<!--Javascript goes here-->
-->
</script>
</head>

or if you want, you can save the javascript into a .js file.

<head>
<title>Page Title</title>
<script language="javascript" src="script.js">
</script>
</head>

AdamBrill
09-20-2003, 06:19 PM
Originally posted by TheNewGuy07
what in the heck is a javascript and where do i place it? I know you guys know a lot more than me about this i run on XP and have charter internet. :confused: :confused: :confused: Was there a specific thing you were trying to do?