I’m trying to hide the "Select Value" option in the drop down menu of a plugin I have for my wordpress, I’ve tried the following code:
div.calc-drop-down-box.calc_dropDown_field_id_0 {
visibility: hidden !important;
}
But this doesn’t work. What am I doing wrong?
2
Answers
You can use the jQuery click() method in combination with the on() method to hide the dropdown menu when the user click outside of the trigger element.
here is the example code
Try this:
It gets the first child of type ‘option’ and hides it from the dropdown
https://jsfiddle.net/shn5dcmu/1/