I'm currently using wysiwyg webbuilder 8.I have one of my combo boxes linking to another but i want the first box to affect text on the page the text id is text23 and here is the coding i am using at the moment
<script type="text/javascript"> function fillSecondCombo() {[code]....
this is the only thing i need to complete the site i am working on
I'm currently using wysiwyg webbuilder 8. I have one of my combo boxes linking to another but I want the first box to affect text on the page the text id is text23 and here is the coding I am using at the moment.
Code: <script type="text/javascript"> function fillSecondCombo(){ var combo1 = document.getElementById('Combobox3'); var combo2 = document.getElementById('Combobox4'); var selected = combo1.options[combo1.options.selectedIndex].value; if (selected == 1){ combo2.options.length = 1; combo2.options[0] = new Option("999 Million Forza 3 Credits", "1"); } ..... This is the only thing I need to complete the site I am working on.
I have a 2 level combo box that are dependent on each other and what I want to happen when the "submit" button is selected is for an html text answer to be displayed on the same page below the combo boxes based off of what was selected in the second combo box. I've tried using hide/show functions with JavaScript but couldn't figure out how to link the 2 scripts together.
What I have got is a form that a user has to fill out and submit (when validated all variables are stored in a session and emailed after multiple forms are completed), currently I have radio buttons, text boxes and a combo box/ drop down list (for location). All parts are working fine and validating fine. My problem is to do with the combo box//ddl. I have successfully validated the ddl so the user must select a location onsubmit and it is added to session and passed fine.At the moment the ddl only has cities or towns in it however as I would like to include different states and possibly different countries I need a code that validates the state first and then only gives the cities/towns that are in that state (otherwise my ddl would be to large). I can do this with links however I can't seem to do it in a form.
First I have a combo box populated from mysql db. Then onChange of the first combo box then I would like to populate my second combo box. I am trying out the jquery method as below. The first combo box id is $clientID. The problem I dont get the alert method shown that means is not working.
I'm trying to create a simple <select> menu in which the options are not text, but images. How can I go about doing this? I tried <option value="x"><img src="xx" /></option> with no success...If no solution exists with HTML, is there a solution with JavaScript or any other language?
I am developing an asp page (compliants.asp) using Javascript. I am not able to solve a problem i.e., I ve 2 dropdown lists. Based on the 1st dropdown list's data (data retrieved from database) , second dropdownlist has to be populated (retrieving data from database). Can anyone help me in sorting this issue. Im posting my code below...
I am using javascript to populate a number of text boxes based on the data item selected in the 1st combo box.
I am now working on making the selection of that combo box populate another combo box with items from another table. I can hard the sql code for the 2nd combo box so that when I select an option it populates more text boxes, but want the contents of the 2nd combo box to dynamically change depending on the selection of the 1st box. I would like this to do it without refreshing the page after each 1st combo box selection.
The 2nd box does not populate with the below code as I guess the variable isn't populated, I can put '1' in and it selects products with that prodid, but as explained above i'd like it to read the prodid from the 1st combo box.
Code: <?php require "session_logincheck.php"; function selectProductAndPopulate() {
Regarding 2 combo boxes dependent with each other. Like the STATE AND CITY, when you select a STATE then depending on the state you selected ONLY CITIES under that will be populated on the 2nd combo box.
I have a search page where i have like 10 combo boxes and some radio buttons and check boxes.
Now when the page loads, i do some selection in the combo boxes and when i press reset button it clears all data in the form elements.
But when i select things in combo boxes and do a search by clicking OK button then the search results are displayed there and now if i want to clear all the form elements , i tried to click reset button, but when ever i did a search ie click ok button and after than press reset button reset button is not clearing the form elements.
Reason for this problem: Reset button resets the form to it's state when it was loaded (as opposed to clearing the values) so if the page loaded with the search values in it, when you hit Reset nothing will happen if you haven't changed anything. Code:
I got a piece of code off the net which bases one combo box on another, which works perfectly the only problem i need to base it on records in a table as ive a few hundred records for the "Site" combo box
how I would go about changing the below to look at an SQL table
<script type="text/javascript"> var regiondb = new Object() regiondb["2"] = [{value:"1", text:"Site1"}, {value:"2", text:"Site2"},
In my page there are a combo-box and a check-box that should have the following behaviour: When check-box is checked, the combo-box has to take a precise value and has to be not editable by the user. I cannot use DISABLED option because the back-end needs the value in the combo and READONLY option is useless with a combo-box.... So I don't know what to use to make the combo "disabled"
How do i select an option in a combo box? i have tried looking on the internet but dont really know what i should be searching for. what i want to happen is that when a function is called a line of code will select a specific option in a combo box. something like:
//excuse the dodgy syntax
function select_combo() { cb_1.select[3] //where option 3 will be selected (or 4 if first index is 0) }
I have to write a web page wht three combo boxes, all three are to be populated from a database. - there tables = Bulidings, Floors and Offices
The user will choose a 'Building' from the first combo, once it has been selected, I need to populate the second combo box with the 'floors' of that selected building. The user will then select the floor, which in turn will then populate the office combo box for the user to select.
I have a double combo drop down and it is working fine except that it is in a form and I cannot seem to get it to pass variables to the email like a normal form would.
the error message comes up put once you click ok you can still submitt the text even if its forbidden.... any way around this, such as deleting the text within the textbox when the error box is shown?
I have a form which takes some values as input and stores them in a db for another use. I have the following java script to validate the entries.
Now I am planning to add a combo box to the form where I have the environment field. Following is the code for the form.
How to implement a combo box( ie first two options are US and UK and third one is a text box which i can enter any value, can't be left blank while submitting the form) with "Environment" field?
I have 2 combo boxes where you can move the items in combo box 1 to combo box 2. I want to validate that combo box 2 actually has something moved to it. How can I count the items in combo box 2. Combo box 2 will initially have no items in the box on page load. It is up to the user to move the items to combo box 2 and I want to make sure at least 1 item was moved.
I have a problem here with my coding. I want to have three levels combo box. However the second level is not populating the values, therefore the third level cannot be populated also. I have attcached my codes here. Pls have a look and tell me where is my error.
I am trying to use the same DHTML combo box script on a web page for our church server. I post the same script on the page deleted the links and add a new link under the different icon and it shows the same links on the previous icon (Fall.gif). I want to use the same code on a different icon with different links. I know how to move the inner menu to position. I just need to make this work on the different icons, i.e. winter, spring, or summer. Code: