/    Sign up×
Community /Pin to ProfileBookmark

javascript woes: select radio button when textbox is clicked

m trying to select a radio button when the text box next to it is clicked (when text is entered) I’m having trouble reading this code dreamweaver put in, heres the javascript code:

function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf(“?”))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_changeProp(objName,x,theProp,theValue) { //v6.0
var obj = MM_findObj(objName);
if (obj && (theProp.indexOf(“style.”)==-1 || obj.style)){
if (theValue == true || theValue == false){
eval(‘obj.’ + theProp + ‘= ‘ + theValue);}
else{
eval(“obj.”+theProp+”='”+theValue+”‘”);}
}
}

heres the text box tag that calls it:

<input name=”OTHER1″ type=”text” onClick=”MM_changeProp(‘9′,”,’checked’,”,’INPUT/RADIO’)” value=”OTHER” size=”50″ maxlength=”50″>

can anyone help?

to post a comment
JavaScript

3 Comments(s)

Copy linkTweet thisAlerts:
@JulianJJun 12.2006 — Geez, that's a lot of code for very little. How about this:

<input type=text onfocus="document.getElementById('rad').checked = true;" value=""><input type=radio id=rad>

Julian
Copy linkTweet thisAlerts:
@CharlesJun 12.2006 — A wee bit better supported:[code=html]<input type="text" onfocus="this.form.rad.checked = true"><input type="radio" name="rad">[/code]
Copy linkTweet thisAlerts:
@spangltkauthorJun 12.2006 — thats great thanks for the help, dreamweaver seems to over do it.
×

Success!

Help @spangltk spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.21,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...