Refreshing a page implicitly without the user noticing

Refreshing a page implicitly without the user noticing

I was wondering if there is a jquery way to implicitly refresh a page without the page blinking,
i know the common way is like this below. Regards
  1. <script>
        $(document).ready(function(){
            $("#divid").click(function(){
                location.reload(true);
            });
        });
    </script>