Working with a select element

//Get the value of a selected option $('selectElement').val(); //Get the text of a selected option $('#selectElementId :selected').text(); //Remove an option (e.g. id=1) $("#selectElementId option[value='1']").remove();

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.