Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

JavaScript Forum


You are currently viewing our JavaScript Forum as a guest. Please register to participate.
Login



Reply
Change Value from Select Menu Based on the value of a javascript variable
Old 03-30-2006, 06:35 PM Change Value from Select Menu Based on the value of a javascript variable
Junior Talker

Posts: 1
Trades: 0
Hi,

I am creating a quoting program for our organisation and need the program to select/change the value which is selected by default in the drop down menu, based on whether another variable on the page is Yes or No.

Is anybody able to help me? This is rather urgent.

Thanks heaps,
Caleb
littlemutts is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 03-30-2006, 07:38 PM Re: Change Value from Select Menu Based on the value of a javascript variable
Super Talker

Posts: 144
Trades: 0
well, i'm confused. you want it to select the option who's value represents the same value in the variable?

Code:
 
  function select_val(selectNode, var_with_val) {
    var i, len = selectNode.options.length;
    for (i = 0; i < len; i++) {
      if (selectNode.options[i].value == var_with_val) {
        selectNode.selectedIndex = i;
        break;
      }
    }
  }
 
  select_val(document.forms.myForm.mySelectElement, "some value");
that should do it.
__________________
create.vibe

Please login or register to view this content. Registration is FREE
createvibe.com is offline
Reply With Quote
View Public Profile Visit createvibe.com's homepage!
 
Reply     « Reply to Change Value from Select Menu Based on the value of a javascript variable
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.54387 seconds with 12 queries