jquery style display code example
Example 1: jquery style display
$("#YourElementID").css("display","block");
Example 2: jquery style top
$("selector").css('top', '50px');
Example 3: on hover display block jquery
.flyout {
position: absolute;
width: 1000px;
height: 450px;
background: red;
overflow: hidden;
z-index: 10000;
display: none;
}
#menu:hover + .flyout {
display: block;
}