I want to populate content depending upon the multiple select box selection. I can get all selected value of select box. Using

$('select').change(function(){
   console.info($(this).val()) // it gives me array
});

But i want only the recent selection/deselection user makes.

link|improve this question

31% accept rate
feedback

3 Answers

up vote 0 down vote accepted

Try this

// this will set the last selected or deselected option element's value to the select element as a custom attribute "recent" 
$("#selectEl option").click(function(event) {
   $(this).parent().attr("recent", $(this).val());
});


$("#selectEl").attr("recent"); // returns the last selected/deselected option value or undefined if attribute recent is not present
link|improve this answer
feedback

You could do:

function arr_diff(a1, a2) {
    var a = [],
        diff = [];
    for (var i = 0; i < a1.length; i++)
    a[a1[i]] = true;
    for (var i = 0; i < a2.length; i++)
    if (a[a2[i]]) delete a[a2[i]];
    else a[a2[i]] = true;
    for (var k in a)
    diff.push(k);
    return diff;
}
var oldSelect = [];
$('select').change(function() {
    var changes = arr_diff(oldSelect, $(this).val());
    console.info(changes); // it gives me array
    oldSelect = $(this).val();
});

changes contains only the selcted/deselected element

fiddle here http://jsfiddle.net/j5rBS/

P.S. You should accept some answer because your acceptance rate is very low

link|improve this answer
Thanks Nicola, It worked for me. – vinay Oct 4 '11 at 4:35
feedback

or, Simply just get the first index of array while select.

$(function(){
$('select').change(function(){
   var opt=$(this).val();
    $("span").text(opt[0]);
});
})

http://jsfiddle.net/jMw92/10/

link|improve this answer
This will not give me recent selection, I gives first value from selection. – vinay Oct 4 '11 at 3:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.