hide select tag dropdown caret
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
/* For IE <= 11 */
select::-ms-expand {
display: none;
}
hide select tag dropdown caret
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
/* For IE <= 11 */
select::-ms-expand {
display: none;
}
selected dropdown value
Plain JavaScript:
===================
var e = document.getElementById("elementId");
var value = e.options[e.selectedIndex].value;
var text = e.options[e.selectedIndex].text;
---------------------------------------------------------
jQuery:
=======
$("#elementId :selected").text(); // The text content of the selected option
$("#elementId :selected").val(); // The value of the selected option
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us