click() question

D

Don Lancaster

I want to programatically force click a certain radio button named
"fourdp".

A click(fourdp) ; returns an undefined error.
What am I doing wrong?


--
Many thanks,

Don Lancaster
Synergetics 3860 West First Street Box 809 Thatcher, AZ 85552
voice: (928)428-4073 email: (e-mail address removed) fax 847-574-1462

Please visit my GURU's LAIR web site at http://www.tinaja.com
 
D

Douglas Crockford

I want to programatically force click a certain radio button named
"fourdp".

A click(fourdp) ; returns an undefined error.
What am I doing wrong?

html objects are in a distinct space from JavaScript objects. You have to use an
accessor method like

document.getElementById('fourdp').click();

where fourdp is the id (not necessarily the name) of the element.

More hints here: http://www.crockford.com/#javascript
 
D

Don Lancaster

Douglas said:
html objects are in a distinct space from JavaScript objects. You have to use an
accessor method like

document.getElementById('fourdp').click();

where fourdp is the id (not necessarily the name) of the element.

More hints here: http://www.crockford.com/#javascript

If I try adding an ID="fourdp" etc to the radio buttons, the return
error message is

OBJECT DOESN'T SUPPORT THIS PROPERTY OR METHOD.

Can a radio button have an ID?


--
Many thanks,

Don Lancaster
Synergetics 3860 West First Street Box 809 Thatcher, AZ 85552
voice: (928)428-4073 email: (e-mail address removed) fax 847-574-1462

Please visit my GURU's LAIR web site at http://www.tinaja.com
 
D

Douglas Crockford

I want to programatically force click a certain radio button named
If I try adding an ID="fourdp" etc to the radio buttons, the return
error message is

OBJECT DOESN'T SUPPORT THIS PROPERTY OR METHOD.

Can a radio button have an ID?

Sure they can. Make sure they each have a different id.
 
D

Don Lancaster

Douglas said:
Sure they can. Make sure they each have a different id.

Finally worked it out.

form.hominydp.fourdp.click() ;

apparently works properly


--
Many thanks,

Don Lancaster
Synergetics 3860 West First Street Box 809 Thatcher, AZ 85552
voice: (928)428-4073 email: (e-mail address removed) fax 847-574-1462

Please visit my GURU's LAIR web site at http://www.tinaja.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,780
Messages
2,569,611
Members
45,280
Latest member
BGBBrock56

Latest Threads

Top