To select all elements that are selected use the :selected selector. It works only for option elements. We have shared the solution below:
1 2 3 4 5 | <script type="text/javascript"> $("select").find("option:selected").val(); //or even better $("select option").filter(":selected").val(); </script> |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.