![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.javascript archiveRe: Get value from button
From: Daniel Kirsch <Iwillnotread_daniel@gmx.de>
Date: Mon Jun 20 2005 - 16:25:40 CEST
bonAveo.net wrote:
where is your addUrl function?
You may probably want something like
function addUrl(val) {
>> function goTo() {
I don't see an element with ID "seee"
>> var link = document.getElement("addUrl");
I don't see an element with ID "addUrl"
>> var url = link + adress;
"link" and "adress" are object references in this case. If they
var url = link.value + adress.value;
Daniel
|