How do I make my horizontally scrolling page work in IE?

Posted by Jessica on Stack Overflow See other posts from Stack Overflow or by Jessica
Published on 2010-05-15T23:47:15Z Indexed on 2010/05/15 23:50 UTC
Read the original article Hit count: 184

I am using a horizontal scroll for a page on my website ~ works great in FF but not in IE, how can i get it to work in IE? Here is the JS that I have in the head of my html:

<script src="js/jquery-1.2.6.min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
    $(function(){
        $("#page-wrap").wrapInner("<table><tr>");
        $(".post").wrap("<td>");
    });</script>

There is also of course the other script file, but its huge so I'm not going to post it here. Is there a hack or something I can use to get it to scroll correctly in IE? Thx in advance!

© Stack Overflow or respective owner

Related posts about browser-compatibility

Related posts about scroll