FrontEnd

get previous selectbox value

seowooJeong 2021. 2. 5. 12:27
var previous;

$("select").on('focus', function () {
    previous = this.value;
}).change(function() {
    alert(previous);
    previous = this.value;
});