I know his easiest question, but can't get the right answer
<div class="col-12 col-md-4 col-lg-5 mt10-xs"> <p>Status</p> <div class="form-group FL mr20 w100-xs"> <div class="rsi-custom-select"> <select class="form-control" id="statustab_{{ $row['placementkey'] }}" class="select2-selecting" onchange="listingByStatus(this,'{{ $row['placementkey'] }}')"> @foreach($placementStatus as $pl) <option @if($pl['placement_status_id'] == $row['statusid'] ) selected @endif value="{{$pl['placement_status_key']}}">{{$pl['placement_status']}}</option> @endforeach </select> </div> </div> </div>
This is my onchange function. In this section "How to get the previous selected value from my selection window"
function listingByStatus(ths,key){ var thisSelect = $('#statustab_'+key).text(); var statusText = $( "#statustab_"+key+" option:selected" ).text(); var currentval = $( "#statustab_"+key+" option:selected" ).val(); }
javascript jquery javascript-events
Siva ganesh
source share