I have something like this:

$('li',$dcVerticalmenuObj).hoverIntent(config);


var config = {

    interval: 100, 
    over: megaOver, 
    timeout: 0, 
    out: megaOut 
};


function megaOver(){
    $container.css(containerPosition).show();
}

but the hover function not working in IE 8.

有帮助吗?

解决方案

i know what happen..my jquery is outdated i guess..once i replace it with the latest version http://code.jquery.com/jquery-1.10.2.min.js thn everything working fine

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top