I'm trying to use AJAX to load an html page located on my server into a div frame (iframe won't scroll properly using a custom scrollbar) and it loads fine in firefox but not anything else it seems (tho it was working in IE at one point I am pretty sure).
<div id="scroll" class="news frame" style="position:absolute;width:570px;height:430px;margin:0px auto;left:143px;top:70px;background:#fff;overflow:auto;overflow-y: hidden;">
<div id="load"></div>
<script>
$(document).ready(function(){
$('#load').load('http://www.bizzaromatic.com/news.html');
});
</script>
</div>
Obviously I need some sort of cross-browser solution but my limited knowledge of JS and Jquery has led me to here.
Edit: If someone has a better method to embed a page in a frame that isn't iframes I will gladly listen to that as well.