Last active
December 16, 2015 00:09
-
-
Save johnnyreilly/5345373 to your computer and use it in GitHub Desktop.
Making IE 10's clear field ("X") button and jQuery UI play nice
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* jQuery auto completes add the class below when loading */ | |
.ui-autocomplete-loading { | |
background:url('/images/ajax_loader.gif') no-repeat right 0.5em center; | |
} | |
/* How'd you like them apples IE 10? */ | |
.ui-autocomplete-loading::-ms-clear { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment