Question

My background image loads blocky for some reason (i.e., the center doesn't load horizontally), but after any tiny window resize it snaps into full form. I wanted to add a small bit of Javascript to adjust the window size by 1 pixel to remedy this. Unfortunately, I'm getting no results with the below code:

<script>
    $(document).ready(function(){
        window.resizeTo(window.outerHeight, window.outerWidth + 1);
    }
</script>

Anyone have any ideas why?

Thanks!

Was it helpful?

Solution

Try to close the DOM ready function:

$(document).ready(function(){
    window.resizeTo(window.outerHeight, window.outerWidth + 1);
}); // <-- Here
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top