sendscore
sendscore

Reputation: 1

click two radio buttons at the same time?

is there a way by which if i click a radio button(s) in say, FILEA.htm, a corresponding radio button in say, FILEB.htm, is automatically clicked?

Upvotes: 0

Views: 212

Answers (2)

D'Arcy Rittich
D'Arcy Rittich

Reputation: 171351

If FILEB.htm is included in an IFRAME in FILEA.htm, you can do this.

Upvotes: 0

ChrisF
ChrisF

Reputation: 137108

Assuming that FileA.htm and FileB.htm are independent files, the only way you can do this is if the radio button in FileA sets some persistent value (database, cookie, session variable) that FileB looks at when it gets loaded.

Upvotes: 2

Related Questions