I have successfully implemented the jQueryUI Autocomplete function and here is how I have customized it:
appendTo: "#results",
open: function(){
var position = $("#results").position(),
left = position.left,
top = position.top;
$("#results > ul").css({
left: (left + 15) + "px",
top: (top + 30) + "px",
width: (206) + "px",
float: "left"
});
},
The implementation works seamlessly on Firefox, Chrome, IE8, and IE9, but unfortunately encounters issues on IE7. Can anyone help me identify what may be causing this discrepancy? Your assistance is greatly appreciated.