Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hide Default Select Drop down Arrow in IE9

REFDEMO

Ihave tried css appearance: none; to hide select drop down arrow. But In IE9 arrow shows. For reference see the image.

Any idea how to hide arrow using css or jquery?

Here is my code:

    .fields-set select{
height:32px;
border:1px solid #ccc;
margin: 0 19px 0 1%;
padding:0 32px 0 1%;
width:55%;
float: left;
overflow: hidden;
background:url("https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR3xT6PSVebCcTYjggESCb55GBM91fGgbyrMFbs3CGeFoQjFwVB") no-repeat scroll right center padding-box border-box #FFF;
box-shadow: none;
-webkit-appearance: none;
   -moz-appearance: none;
        appearance: none;
    -ms-appearance: none  \9;
     -o-appearance: none;
    }
like image 290
ItzMe_Ezhil Avatar asked Apr 29 '15 11:04

ItzMe_Ezhil


2 Answers

You can use a pseudo-element for the drop-down arrow in IE.

select::-ms-expand {
    display: none;
}

reference

  • https://msdn.microsoft.com/en-us/library/windows/apps/hh465742.aspx
  • Select removing dropdown arrow
  • Remove Select arrow on IE
like image 106
Suresh Karia Avatar answered Sep 30 '22 20:09

Suresh Karia


Try this

.myclass::-ms-expand{display:none}
.myclass{
    -moz-appearance:none;
    -webkit-appearance:none;
    text-indent:0.01px;
    text-overflow:''; 
    background:url('https://www.holidayme.com/Images/uparrow.jpg') no-repeat 95% center #fff;
    border:1px solid #ccc; 
    width:100%;border-radius:0;
    color:#666;border-radius:3px;
    width:200px;
   padding:10px 5px;
}

check the fiddle for more....

like image 20
Bhushan wagh Avatar answered Sep 30 '22 18:09

Bhushan wagh