Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

get all values of a select javascrip

//u have to put a unique id on your html select tag!
var options = document.getElementById('mySelectID'). options;
/*u can use this istead if u dont have an id in your select,
if u have only 1 select in your html*/
var options = document.querySelector('select').options;

//options.length gives the array dimension of var options
for (let i = 0; i < options. length; i++) {
//log the value.
console. log(options[i]. value);
}  
Comment

js select get all options value

$("#mySelectID option").toArray().map(p=>p.value)
Comment

javascript get all options from select

x.options.length
Comment

PREVIOUS NEXT
Code Example
Javascript :: moment js add day 
Javascript :: javascript random letter generator 
Javascript :: jquery cast to string 
Javascript :: remove same occurances in two different arrays js 
Javascript :: foreach element in class javascript 
Javascript :: javascript initiate array all zero 
Javascript :: javascript keywords 
Javascript :: word count js 
Javascript :: fetch request to GraphQL 
Javascript :: fibonacci sequence in javascript 
Javascript :: sort object by value javascript 
Javascript :: remove attribute javascript 
Javascript :: javascript change url without reload 
Javascript :: import jquery into angular 8 
Javascript :: get current scroll height javascript 
Javascript :: how to call a function with a button in javascript 
Javascript :: nodejs strict ssl false 
Javascript :: javascript replace all spaces with dashes 
Javascript :: trigger on change 
Javascript :: regular expression replace a dot 
Javascript :: javascript convert int to float with 2 decimal places 
Javascript :: javascript click to copy 
Javascript :: Material App debug mode 
Javascript :: how to focus icon of active screen react native 
Javascript :: how to hide mouse pointer in javascript 
Javascript :: url regex 
Javascript :: javascript object to params string 
Javascript :: javascript code to refresh page automatically 
Javascript :: add an element to the front of an input list in javascript 
Javascript :: update replit node 
ADD CONTENT
Topic
Content
Source link
Name
3+2 =