this might have been answered already, but I don\'t think this particular question has been answered.
I have a dropbox (select & option) and I want to display the va
With Jquery code, try this one:
$('#inputmsgType').click(function() { $('#description').html("Option value is:" + $('#inputmsgType').val() + "Option Description is: " + $('#inputmsgType option:selected').text()); });