In multi dropdown , How can i get the currently removed value [closed] - javascript

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
How can I get the currently removed value from a multi dropdown box.
For example
<select name="select[]" multiple id="select1">
<option value="1"> 1 </option>
<option value="2"> 2 </option>
<option value="3"> 3 </option>
</select>"
I first select 1 then 2 and after that I deselect 2 . I need a j query to get me the value 2. Is that possible.
Thanks in advance...

Try this
<script>
var last_value = 1;//put the value default of your select
$(document).ready(function(){
$('#select1').change(function(){
alert(last_value);
last_value = $(this).val();
});
});
</script>
DEMO

Related

Get the ID of an option in select dropdown [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 months ago.
Improve this question
I have a select dropdown:
<select onChange={(e)=> console.log(e.target.id)} id="cars" name="carlist" form="carform" >
<option id="a" value="volvo">
Volvo
</option>
<option value="saab">Saab</option>
<option value="opel">Opel</option>
<option value="audi">Audi</option>
</select>
I would like to get the ID a when selecting 'volvo' from the dropdown, thus getting the ID of the option, how can I achieve this?
The reason why I'm trying to get an id is because this dropdown can have multiply options with the same name (they would be separated by a line)
Use the selectedIndex to get this.
var getId = document.querySelector('#cars');
console.log(getId.options[getId.selectedIndex].id);
You can have the pass the reference of 'this' and get it from there.
something like the below answer
How to get selected option ID with Javascript not JQuery

How to show text in a textbox based on selected value? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 2 years ago.
Improve this question
I'm working on my MVC project and need to bind selected value with textbox - what I mean is when you choose an item on a selected list then this value appears in a text box. Here is an example:
<div class="row">
<select id="chasis" name="type">
<option value="sedan">sedan</option>
<option selected value="hatchaback">hatchback</option>
<option value="cabrio">cabrio</option>
<option value="coupe">coupe</option>
</select>
</div>
<label>Your choice is: <input id="chasisText" type="text" value=""></label>
and jQuery code:
<script>
$(function() {
$("select#chasis").change(function(e){
$("#chasisText").val(e.target.value);
});
});
</script>
This code works well but my question is if there is any other way to show selected value in a textbox? Maybe easier or more tricky?
add jquery cdn to head part of your HTML if you havent added, ignore if already added.
add chasisChange function to select
<select id="chasis" onchange="chasisChange()" name="type">
below Jquery function (chasisChange()) will be executed when value changes of select portion of HTML.
function chasisChange(){
var val = $('#chasis').val();
console.log(val);
$('#chasisText').val(val);
}
working example

PHP - Load a div with filtering option when two date fields are filled [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I have developed a leave request page with PHP,Javascript and CSS. I need when user choose the same date on two date fields then will show the div for a option with two radio buttons for halfday leave or fullday leave, please suggest me if any possibilities for this..
We can use jQuery's .val() method to check the date value. If two of them equal, then use .show() to display the extra elements, else use .hide() to not show them.
Start: <input type="date" name="s" id="s" onchange="check()"><br>
End: <input type="date" name="e" id="e" onchange="check()">
<div id="detail" style="display:none">
<select>
<option>Full day</option>
<option>Half day</option>
</select>
</div>
function check() {
if ($('#s').val() == $('#e').val()) {
$('#detail').show();
} else {
$('#detail').hide();
}
}
fiddle

Show textarea when choosing the option "Other.." [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I have a select item with in there a few options, and one of them is called "other..". What I want is that when a user clicks on "other.." a textarea will appear, I know this can be done with jQuery. Here is a short and simple version of my HTML:
<html>
<body>
<select>
<option value="opt1">Option 1</option>
<option value="opt2">Option 2</option>
<option value="opt3">Option 3</option>
<option value="opt4">Option 4</option>
<option value="other">Other..</option>
</select>
<input type="text" id="other_text" />
</body>
</html>
Add the change event to your dropdown list, which will toggle the text field if the selected value is "other":
$('select').on('change', function() {
$('#other_text').toggle(this.value === 'other');
});

i want to use multi select with bootstrap also called chosen [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I am sonal goyal . New in designing . I want to use multiple select also called 'chosen' in my html page. But enable to create code.
I am using:
1- bootstrap 3.0
2- jquery 1.10.3
In future backbone.js
I find this link chosen.but enable to find code.
can you pls help me.
Thanx
<!-- Build your select: -->
<select class="multiselect" multiple="multiple">
<option value="cheese">Cheese</option>
<option value="tomatoes">Tomatoes</option>
<option value="mozarella">Mozzarella</option>
<option value="mushrooms">Mushrooms</option>
<option value="pepperoni">Pepperoni</option>
<option value="onions">Onions</option>
</select>
<!-- Initialize the plugin: -->
<script type="text/javascript">
$(document).ready(function() {
$('.multiselect').multiselect();
});
</script>
Ref: http://davidstutz.github.io/bootstrap-multiselect/
The code is on github if this is what you're asking > https://github.com/alxlit/bootstrap-chosen Make sure and check "example.html"

Categories

Resources