I am trying to something very simple. I have this select tag
<select id="appID">
<option value="1409608204102">test app 1</option>
<option value="1409608295422">test set 2</option> </select>
I want to print the text of the selected option in the "printHere" div. Very simple but for some reason I cant figure out how to do it through jquery
I am doing this but
$('#appID').change(function(){
var k = $(this).is('selected','selected').text();
$('.printHere').text(k);
});