Disappearing Drop-down Menu and Auto Hover

This code will fixed megamenu onhover

$w . onReady ( function () {

$w ( '#RollerShadesBtn' ). onMouseIn (( event ) => { 
    $w ( "#SolarShadesBox" ). show ();  
}); 
$w ( '#SolarShadesBox' ). onMouseIn (( event ) => { 
    $w ( "#SolarShadesBox" ). show ();  
}); 
$w ( '#RollerShadesBtn' ). onMouseOut (( event ) => { 
    $w ( "#SolarShadesBox" ). hide ();  
}); 
$w ( '#SolarShadesBox' ). onMouseOut (( event ) => { 
    $w ( "#SolarShadesBox" ). hide ();  
}); 

});