How to get value form SELECT on click jQuery amiriqbalmcs 2:28 PM 0 jquery amiriqbalmcs How to get value form SELECT on click jQuery 1 <select id="selected"> 1 2 3 4 5 6 7 8 <script type="text/javascript"> $(document).ready(function(){ $('#selected').change(function(){ alert($(this).val()); }); </script>