$(document).ready(function(){ $('select').change(function(){ alert( $(this + ' option:selected' ).text() ); }); });
alert( $(this).find('option:selected').text() );
Jump To Top of Thread