i have this javascript code to which i want to add the jquery fade-in effect
hover.addEventListener('mouseover',function () {Core.addClass(cpanel,"on");},false);
Core is another library i am using.
the above event listener just enables the cpanel div to visible state. how do i make it fade into the view. i am using jquery-ui and am very new at it.
thanks a lot in advance.
Assuming your cpanel div has a class of ‘on’, you could do this:
See jQuery’s fadeIn effect