modal window in header frame doesnt fill the entire window as a result of body frame existing
Hi i have a frameset. Two frames in it with top frame ocupying 25% row and other 75%.
<framest>
<frame name="frame1" src="header.jsp" />
<frame name="frame2" src="body.jsp" />
</frameset>
header.jsp:
<script>
$(document).ready(){
$("#modaldiv").modal();
$("#modaldiv").show();
}
</script>
<div id="modaldiv">
</div>
Because of the body frame(frame2) my modal window is cut half(25% top) even when i increase the height. How can i overlay on the frame 2 as well, so that it displays in the center of the window normally.