I'm creating a page and it goes fullscreen, but I have a problem when I enter fullscreen the rest of the content that is "below" is not shown, it only appears to the limit of the monitor.
I'm trying to put a scroll bar with overflow
, but I'm not getting it.
index.php
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.1.min.js"></script><divid="meio" style="width:768px; margin:0 auto; overflow:auto;"></div>
<script type="text/javascript">
var estado = "";
$(document).ready(
function() {
var Oaltura = $(document).height(); //altura da página
var altura = Oaltura + 250;
$("#meio").css('height', altura+"px");
$("#meio").load("menu.php");
}
);
</script>