JavaScript 2022

Term 3 Wednesday

May - July 2022

This site will be updated live during the sessions

Week 9 2 Get Options

		
001window.onload = ()=>{
		
002	//gets first select
		
003	const theSelectElement = document.querySelector('select');
		
004	theSelectElement.onchange = function(){
		
005		const selectedValue = theSelectElement.options[theSelectElement.selectedIndex].value;
		
006		console.log(selectedValue);
		
007	}	
		
008}