well mouseover does work but i think i did find the issue: look at this code:

//load auto complete after set number characters
if($(this).val().length >= self.options.load_number)
{
        $('#' + self.options.auto_complete_id).load(self.options.url,
        {
                search_filter: self.element.val()
        },
        function()
        {
                self.show_list();
                self.options.list_count = 0;
                $('#' + self.options.auto_complete_id + ' 
li').each(function(number)
                {
                        alert('test');
                        self.options.list_count++;
                        $(this).bind('mouseenter', function()
                        {
                                self.focus(number);
                        });
                });
                $('#' + self.options.auto_complete_id + ' li').bind('click',
function(event)
                {
                        self.update_value();
                });
});

now with that alert('test') it works fine is ie 6 but without it it does
not, but the click even does work for IE6 with the alert.  it is like when
it try to apply the mouseenter, the element is not there and for the click
it is.  anyone seea nything wrong with this code?

Eridius wrote:
> 
> my mouseover event is not taken effect in IE 6
> 

-- 
View this message in context: 
http://www.nabble.com/mouseover-and-IE-6-tp15421402s27240p15421790.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.

Reply via email to