Open Select Pulldown Box Only If Certain Option Is Clicked
Jul 20, 2005
how do I code it to display a select (pulldown) box only if the user
has selected a certain option in another pulldown box?
<select name=country>
<OPTION value="France" SELECTED>France
<OPTION value="Spain">Spain
<OPTION value="Portugal">Portugal
</select>
<select name=city>
<OPTION value="Paris" SELECTED>Paris
<OPTION value="Cologne">Cologne
<OPTION value="Rennes">Rennes
</select>
In the example above, the "city" select box should only display if the
user has selected "France" as country...
Another option would be to disable the pulldown box if a certain
option was clicked - how would I do THAT?
View 2 Replies
ADVERTISEMENT
Jul 14, 2010
I'm populating a select pulldown based on the value of a previous option on a pulldown
When I run it on the firebug command line it works fine, but when it is run in the source it does not populate the html with option's for the pulldown.
$('#regions').change(function() {
town=$('#regions :selected').text().trim();
$('#town').removeAttr('disabled').after().load('rtnregions.asp?region='+town;
});
View 6 Replies
View Related
Jan 20, 2006
I want to know the index of the option that a user clicks on in a
multiple-select object (regardless of whether he selected or deselected
it). This seems fairly simple but I can't seem to figure out how to do
it. Does anybody know how to do this?
View 1 Replies
View Related
Nov 3, 2011
My mission: Open/collapse TD cells based on items selected in a list box. Getting no response from jQuery so I've done something wrong but cant quite get there. Listbox 'mainselect' contains option values that refer to names of TDs in a table. When a mainselect option is clicked, it will toggle to open or close the referenced TD list box by option value. Does hide/show make a TD 'blank' or actually set it's width to '0'? I want it to close, moving other cells left.
<html><head>
<script src="jquery-1.6.4.js"></script>
<script>
$(document).ready(function() {
[Code]....
View 2 Replies
View Related
Jun 21, 2010
I'm using the following code to remove an option from a select control based on a selection in a different select control and the option text in the select option that is being removed. The code works as I want it to, but I would prefer to use the option value for identifying the option to remove instead of using the option text. I've tried several different ways to do this, but can not find the proper syntax.
[Code]...
View 3 Replies
View Related
Sep 24, 2010
I am currently looking to create a JavaScript menu for a website I am working on. It currently expands and collapses on click. The code in question is pasted below:-
menu_status = new Array();
function showHide(theid){
if (document.getElementById) {
var switch_id = document.getElementById(theid);
[Code]....
As you can see, it basically shows and hides the menu (when clicked). I want it to open the menu when clicked and close when another menu is opened. I have looked and have not been able to find a solution into it. Ideally I donot want it to be a long piece of code as I do have a working menu but with many more lines of JavaScript than the one I have posted.
View 6 Replies
View Related
Dec 21, 2011
In my jsfiddle I have an application where the user can select an option and their answers and then display it in a new row. I have one slight problem though, I think it will be easier to explain if you follow the steps below in my [fiddle][1]:
1. Open the grid and select option "3". "3" would be displayed in the textbox and buttons "A" to "C" would appear
3. Click on "Add Question" button. This would create a new row showing the details you have submitted.
4. Now click on the "Open Grid" WITHIN THE ROW you have justmcreated and select option "5". Now the textbox within the row changes the value from "3" to "5" but if you look at the top where you first chose your options and answers, it displays 5 buttons from "A" to "E".
This should not happen. This should stay to what it was previously which was buttons "A" to "C". it should only change if the option is chosen from the Option Type at the top and not within the row.
View 1 Replies
View Related
Sep 29, 2011
So I made a small Paper-Rock-Scissors game but I need to keep track how many times say "rock" has been clicked, what function should I use for that?
(For example, if the user has clicked rock 4 times, the computer will automatically assume that the user will continue with rock and says paper so it'll win the game.)
View 1 Replies
View Related
Mar 24, 2010
I'm having a little bit of a problem with setting the background color through an onClick event on an option tag. When I click one of the options, nothing changes, although I set the body.style.backgroundColor to register to a different color when the option tag is clicked.
View 1 Replies
View Related
Oct 26, 2005
I wish to know if is possible to change the selected option in a SELECT selecting a determined option into another SELECT in the same form.
E.g: When I select the option "Istruction" in the SELECT named "A" I wish the SELECT "B" change the default state from "empty" to "other"
View 1 Replies
View Related
Jun 21, 2006
I'm using Prototype and scriptaculous either, but here it is:
I have two select areas and scripts to transfer items between the two.
Everything works great in FF, but in IE when an option gets removed it
removes the entire select area. Has anyone ever seen something like
this before?
View 1 Replies
View Related
Aug 11, 2010
According to [URL] intended way for jQuery to change dynamically the selected option of a dropdown select control isassigningthe desired text instead of the value. I found this way veryinconvenient (data structures usually deal with value codes, not value descriptions) and it seems to work only sometimes.
Trying different options I came out with this approach that seems to do the job so
far:
function setSelect(pID,pSelectedValue)
{
$('#'+pID + ' option:selected').removeAttr('selected');
[Code]....
View 1 Replies
View Related
Feb 25, 2009
if i have a <select> and i when i click an image i want to do an onclick event to select a specified option inside the <select> is this possible?
View 1 Replies
View Related
Aug 11, 2010
when you click the textbox, the dropdown will reset to the first option, but when you clicked on the dropdown, the text will become empty
but my code won't work
$('option').click(function(){
$(input[id=edit-title]).val("");
});
[Code]....
View 4 Replies
View Related
Oct 12, 2009
I have a form that uses jeditable to edit-in-place several fields and select boxes. Everything is working great. Now I need to a way to add a new option to the select list. What I would like is the user select "Add New..." from the select list that would pop-up a dialog window where several fields are filled in. When the form is saved the select field is updated with the new ID and description. I use Facebox for pop-up windows to display notes when the user clicks on a topic. I know Facebox can be used to display a form. It would be ideal to use this ability when creating a new option for the select box.
View 1 Replies
View Related
Apr 2, 2003
How can I automatically select the next option from a select box? I would like a next button to scroll through the options.....
View 2 Replies
View Related
Jul 7, 2011
If I select "Other", a text box pops up and I can type in something and hit Add Item and it will add it to the drop down box, but the selection will stay at "Other". How do I make it select the item I just added?
View 3 Replies
View Related
Aug 16, 2011
I'm trying to finish off this website, but I need to add a script that allows me to click on a link and information is displayed next to it. There are about 20 links. This is our company website and this is what I want to re-create [URL] so when you click on a link, info comes up for what ever you click.
View 8 Replies
View Related
Sep 23, 2009
I'm ok building and display a modal window, but how do I make it display where the user clicked in the window, as opposed to making it centered in the window?Also, how do I tell the modal to open to the right if the user clicks too far left in the document and vice versa? Or is that a default action?
View 1 Replies
View Related
Aug 21, 2004
i want my windows 98 comp to be able to open only 3 windows when u click on the explorer icon 3 times.it opens as many as i like,but i want it to open a maximum of 3 windows as i dont have have a fast connection as a result the pages dont open so fast ,if i open more than 3 windows.
View 3 Replies
View Related
Jun 1, 2010
I'm looking to accomplish in the Form when user select "others" from the select options , want pop up java windows user to field in the information.
here there simple form code
<form>
<select>
<option value="others">Others</option>
</select>
The field to ask where do you hear about us? I have list of options in there but when the user select "others" i want to input filed popup and want user to filed in the info.
View 4 Replies
View Related
Jul 23, 2005
I have a problem with the following code, when run on IE6 the value for
opt_sel is null but on Mozilla or konqueror the value is the option
selected (as expected). I have tried several books on the matter(and
google), but they seem to indicate that what i am trying to do should
work.. Code:
View 2 Replies
View Related
Mar 17, 2007
in my SELECT (like below), the option value has 2 values, separated with
comma ","
<select name="sIdName">
<option value="10,John">John</option>
<option value="11,Eva">Eva</option>
<option value="22,Danny">Danny</option>
</select>
How can I read these two values individually from Javascript statement ?
like one is 10, another one is John
i.e document.form.option[document.form.selectedIndex].value?
View 4 Replies
View Related
Apr 10, 2009
I'm having two Slecet Option inputs. When both are chosen i want to compare the two make sure they ar ethe same. Its for confirmation purposes.How would i get the value of a selected option. (I don't know which option is chosen, I don't know the id of the option, i dont know the value of the option. I just now the id n name of the select)
<select name="whatever">
{Loop here to output many options}
</select>
View 2 Replies
View Related
Oct 18, 2006
Given a drop down list such as:
<SELECT NAME=sections >
<OPTION>Merge</OPTION>
<OPTION>Nuke</OPTION>
<OPTION>Merge & Nuke</OPTION>
</SELECT>
If one selects Merge, then i want another form displayed with input fileds etc, but if one select Nuke then a different form will be displayed and if one selects the last option then both above forms will be displayed. Can anyone show me a script (i.e. javascript) that does just that or care for a example?
View 4 Replies
View Related
Jul 29, 2009
It should open a modal everytime a link of a given class is clicked. But... it does not.
Code JavaScript:
//get the url of the link clicked
var url;
$('a.edit').livequery('click',function(){
url= $(this).attr('href');
});
[Code]....
When a link of class .edit is clicked, the overlay covers the page for an instant, then a redirect occurs to the page that should be loaded in the modal box (instead of the page being loaded in the modal). It's probably a small mistake as I can get it working the way I want using jqm 'trigger:a.edit'. The problem with this approach is that I lose the livequery power (links from ajax loaded content won't fire jqm).
View 5 Replies
View Related