Yahoo Poland Wyszukiwanie w Internecie

Search results

  1. 14 lip 2010 · Using the .val() function on a multi-select list will return an array of the selected values: var selectedValues = $('#multipleSelect').val(); and in your html: <select id="multipleSelect" multiple="multiple">. <option value="1">Text 1</option>. <option value="2">Text 2</option>.

  2. 1 maj 2021 · This post will discuss how to get all selected values of a multi-select dropdown list with jQuery. With jQuery, you can use the .val() method to get an array of the selected values on a multi-select dropdown list.

  3. 24 kwi 2024 · This post will discuss how to get all options of a select in JavaScript and jQuery. 1. Using jQuery. With jQuery, you can use the .each() method, which is a concise and less error-prone way to iterate over the DOM elements.

  4. 24 mar 2023 · The .each() function in JQuery can be used to loop through each selected option in a select element and get its value. Here is the code: var selectedValues = []; $('#mySelect option:selected').each(function() { selectedValues.push($(this).val()); });

  5. 12 sie 2022 · In this tutorial, learn how jQuery get multiple selected values of the select dropdown box. The short answer is to use the change event using change() function and get selected options values using val() function.

  6. There are two ways to programmatically access the current selection data: using .select2('data'), or by using a jQuery selector. Using the data method. Calling select2('data') will return a JavaScript array of objects representing the current selection.

  7. 3 maj 2011 · With jQuery, the usual way: var values = $('#select-meal-type').val(); From the docs: In the case of <select multiple="multiple"> elements, the .val() method returns an array containing each selected option; edited Oct 4, 2022 at 15:12.

  1. Ludzie szukają również