autocomplete in ie not working

autocomplete in ie not working

Below is my jquery autocomplete function , works fine in chrome but not in mozilla.pls help 
----------------
<asp:TextBox ID="txtSearchBox" ClientIDMode="Static" AutoCompleteType="Search" runat="server"></asp:TextBox>
---------------------------- 
Jquery(function () {

            Jquery.widget("custom.catcomplete", Jquery.ui.autocomplete, {
                _renderMenu: function (ul, items) {
                    var that = this,
        currentCategory = "";
                    Jquery.each(items, function (index, item) {
                        if (item.category != currentCategory) {
                            alert("hi");
                            ul.append("<li class='ui-menu-item separatr'>&nbsp;</li>");
                            ul.append("<li class='ui-autocomplete-category'>" + item.category + "</li>");
                            currentCategory = item.category;
                        }

                        that._renderItem(ul, item);
                    });
                }
            });