I'm trying to output into a div the option selection of a select box - I only need the text of the option not the value. My following code gets all the text from all the options in my select field. How do I adjust so I only get the text of the option selected?
$("#metreSelect").change(function() {
$('#metre').text($(this).text());
});