<script>
        setInterval(function(){
            $.ajaxSetup({ cache: false });
        $('#scrip-data').load(location.href + " #scrip-data");
        }, 30 * 1000);
    </script>
I am trying to reload a div without reloading the page.One thing I noticed the size of the layout getting smaller even the letters. Data I am getting from database. Its working fine except the page render which can be ignored but I want to fix this issue
Any help will be appreciated