I was under the impression that I could get the value of a select input by doing this $(this).val(); and applying the onchange parameter to the sel
$(this).val();
onchange
jQuery get value of select html elements using on Change event
For Demo & More Example
$(document).ready(function () { $('body').on('change','#select_box', function() { $('#show_only').val(this.value); }); });
jQuery Select OnChnage Method Select One One Two Three Four Five