I am using the jquery autocomplete plugin for one of our web apps.
On the combobox, we use this as default value or option.
var input = this.input = $( "<input>" )
var input = this.input = $( "<input>" )
**.attr('data-placeholder', 'Choose an agent...') <-- this line for default value.**
.insertAfter( select )
.val( value )
One of my PCs has IE9, Firefox, Google Chrome.
Another PC has IE11, Firefox, Google Chrome.
When we run the app, we can see the default option of Choose an agent... on both FF and Google Chrome but this default value is blank or missing on combobox when run against IE.
I have added this meta tag at top of the page:
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9" /> (for IE9)
and
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE11" /> (for IE11).
Yet, the problem persists.
Does anyone know if there is a fix for this?