Created
December 16, 2010 17:59
-
-
Save dbergey/743732 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript" charset="utf-8"></script> | |
<select multiple> | |
<option value="4" selected>four</option> | |
<option value="5">five</option> | |
</select> | |
<div id="result"></div> | |
<script> | |
$('#result').html( String($('select').val()) ); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment