Here is a simple, real question for beginners:
I know that you can get the selection text, for example,
$('#selectBoxId option:selected').val();
But what if I already have a select object in my hand?
eg.
var select = $('#selectBoxId');
What will happen next? Is this the right way?
select.find('option:selected').val();
source share