|
-
Aug 13th, 2002, 10:45 AM
#1
Thread Starter
Hyperactive Member
textbox and dropdown communication
Hello all,
Is there a way I can programaticly select a value in a drop down box, depending on what is in another textbox
in IE6.0 i did it by doing
function ModifyIt (frm1) // drop down name is aaa
{
var temp;
temp = frm1.textBox.value;
if (temp.charAt(0) == "A")
{
frm1.aaa.options.value = frm1.aaa.options[1].value;
}
//rest of code;
i trigger the event with a onKeyup = " ModifyIt(this.form)"
this coding works in ie6 but not in nn4.7
can anyonme help me.
i tried all sorts of things but to no avail
regards
bsw2112
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|