474,044 Members | 7,264 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

pass option value as variable for javascript function

Folks,

I have a drop-down select menu generated server-side. I was hoping to
pass more than a single variable from the option value to a javascript
function. Is this possible? At the moment, my option values consist of three
numbers separated by commas. I thought I could pass these three numbers as
three distinct variables to the javascript function, but it obviously
doesn't work this way.

e.g.

<select name="selectnam e">
<option value="1,2,3">f irst selection</option>
etc.
</select>

<input type=button
onclick="dothis (document.form. selectname.opti ons[document.form.s electname.selec tedIndex].value)">

can't evidently be used as

<script lang="javascrip t">
function dothis(a,b,c) {
etc.
}
</script>

Any suggestions?

Dave
--
_______________ _______________
Remove "_SPAM" to reply directly.
Apr 7 '06 #1
2 12339
You can use custom attributes like this.

<form>
<select name="selectnam e">
<option value="a,b,c" val1="a" val2="b" val3="c">first
selection</option>
</select>

<input
type="button"
value="Click Me"

onclick="dothis (this.form.sele ctname.options[this.form.selec tname.selectedI ndex].getAttribute(
'val1'))">

</form>

You still need the "value" tag since it contains the value that's
submitted.

Cheers,

-Georg
David Shorthouse wrote:
Folks,

I have a drop-down select menu generated server-side. I was hoping to
pass more than a single variable from the option value to a javascript
function. Is this possible? At the moment, my option values consist of three
numbers separated by commas. I thought I could pass these three numbers as
three distinct variables to the javascript function, but it obviously
doesn't work this way.

e.g.

<select name="selectnam e">
<option value="1,2,3">f irst selection</option>
etc.
</select>

<input type=button
onclick="dothis (document.form. selectname.opti ons[document.form.s electname.selec tedIndex].value)">

can't evidently be used as

<script lang="javascrip t">
function dothis(a,b,c) {
etc.
}
</script>

Any suggestions?

Dave
--
_______________ _______________
Remove "_SPAM" to reply directly.


Apr 7 '06 #2
I also should say that the W3C DOM getAttribute() method allows you to
read any attribute from any tag. I haven't checked that on all current
browser versions though.

-Georg

David Shorthouse wrote:
Folks,

I have a drop-down select menu generated server-side. I was hoping to
pass more than a single variable from the option value to a javascript
function. Is this possible? At the moment, my option values consist of three
numbers separated by commas. I thought I could pass these three numbers as
three distinct variables to the javascript function, but it obviously
doesn't work this way.

e.g.

<select name="selectnam e">
<option value="1,2,3">f irst selection</option>
etc.
</select>

<input type=button
onclick="dothis (document.form. selectname.opti ons[document.form.s electname.selec tedIndex].value)">

can't evidently be used as

<script lang="javascrip t">
function dothis(a,b,c) {
etc.
}
</script>

Any suggestions?

Dave
--
_______________ _______________
Remove "_SPAM" to reply directly.


Apr 7 '06 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
3161
by: Seeker | last post by:
Newbie question here... I have a form with some radio buttons. To verify that at least one of the buttons was chosen I use the following code ("f" is my form object) : var btnChosen; for (count = 0; count <= 1; count++) { if (eval(f.RadioButtons.checked)) { btnChosen = true; }
1
4144
by: carmen | last post by:
I am using the code below to open another page depending on what is selected. This is working ok but I would like to streamline it so that I will hot have to create a page everytime a new category code is added. How can I pass the category code to another page as a variable after it is selected? That way I would only need one page that can be used for all categories. Thanks Carmen
4
6331
by: Dan | last post by:
Can anyone offer suggestions on how to do this or if it is possible? I have a form that uses a drop down box and 2 text fields. What I am trying to do is have the value of each text box set by the choice from the drop down box. Something like: <form name="populatefrm" id="contactfrm" method="post"
2
1694
by: Dan | last post by:
Here is the working script if anyone is interested. I was missing the else if. <script language="JavaScript"> <!-- function Trip_Time(Traffic_Results) { if (document.Traffic_Results.CIP_Diff.value == "point1") { document.Traffic_Results.display_time.value = "2:20";
1
1140
by: Dan Pavel | last post by:
Hi, I am new in programming and I have a problem. I must save a value in database but i cannot pass the value from javascript to VB at strSQL <% Sub setare(cs) If cs=1 Then strSQL="UPDATE machines SET time=Stime WHERE ip='"&IP&"'" Set rstDB = Server.CreateObject("ADODB.Recordset") rstDB.Open strSQL, strConn
1
3670
by: msg2ajay | last post by:
hello , i have to pass a 'span' id to the javascript function'. how can i pass that. when i tried like below it is working!!! may the function is in the same page.... eg: ---- <html> function dscptAction(){ var obj = document.getElementsByTagName("span");
2
1600
by: kid | last post by:
Hi i need help i want to pass javascript variable to php. here's my sample code its not working. please someone help me.... <select name='dbPages' OnChange='getLayoutID(this.value)'> <option value='' selected> </option> <option value='John'>Name</option> <option value='City'>address</option> <option value='7854245'>Phone</option> </select>
4
4360
by: IRC | last post by:
hey, i am pretty new on javascript as well as PHP, Hey, anyone can you help me, how to pass the javascript array value to php page......... i want to retrieve the values which are arrayed on "selectedValues" from next page for php variable this is my javascript code saved on "sendValue.js" file, <script> function updateRecordEntry(requestValue){
5
2796
by: kodt | last post by:
I need to set an option from a select box to be selected based upon a value I am pulling from a database. I cannot alter the code of the select box in this case, so I must use javascript to change it after the select box has loaded. There are several pages, some with several select boxes, that need this function. I would like one javascript function that will take take two variables (the form element and a value) and then set the correct...
0
12140
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
11602
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
11141
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
10310
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
8698
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
7869
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
6652
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
5416
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
3971
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.