I come today with a little issue jquery related, I'm still learning so please bear with me.
I'm making a site (site1.html) with bootstrap, within this site I have another considerably big one (site2.html) which I'm loading with jquery inside a div:
<div id="siteloader"></div>
<script>
$("#siteloader").html('<object data="site2.html">');
</script>
site2.html has a fullscreen modal but when I use it it takes only the full width/height of the div not of the whole site.
Is it anyway to make it so it takes the full window? or should I just join the small htm1 and big html2?