Sunday, August 24, 2014

Parent Window Reloader

Through it you can reload parent window.       

<script type="text/javascript">
        function RefreshParent() {
            if (window.opener != null && !window.opener.closed) {
                window.opener.location.reload();
            }
        }
        window.onbeforeunload = RefreshParent;
        </script>

No comments:

Post a Comment

Dharamart.blogspot.in