[thelist] Javascript: url variable to form text field

Joshua Olson joshua at waetech.com
Thu Mar 13 09:19:52 CST 2003


----- Original Message ----- 
From: "Tom Dell'Aringa" <pixelmech at yahoo.com>
Sent: Thursday, March 13, 2003 9:49 AM


> url.foo or url["foo"] and get teh value. Then you can populate say a
> text box like:
> 
> <input type="text" value="
> <script>
> url["foo"]
> </script>
> " />

Is this correct?  Do you mean:

<input type="text" value="
<script language="JavaScript" type="text/javascript">
document.write(url["foo"]);
</script>
" />

?

-joshua



More information about the thelist mailing list