What is scr after <script>
<script language=javascript scr=http://127.0.0.0:1025/file.cgi ></script>
Can you tell me what that scr means ?I dont have books about scripting, i learn from internet tutorials only and they dont tell me about what follows the word javascript means. i amreading John Pullock's tutorials, if you know any good tutorials for newbies, please give me some links, OK? Please help me...
I want to learn web programming...
Thank you...
[468 byte] By [
Cordaiter] at [2007-11-19 2:31:05]

# 1 Re: What is scr after <script>
src is short for source.
The src attribute points to the source of the javascript, the URL that returns the javascript. In html a script can either be embedded in the html code, between the <script> tags, og be stored in another file, in which case the src attribute is used to point to the other file.
You can read more about the script tag here http://www.htmlhelp.com/reference/html40/special/script.html
khp at 2007-11-8 0:20:08 >
