Hi,
I'm using the following JS in my base page
            function RefreshDiscussionNotesGrid() {
                RefreshGrid("<%=rgDiscussionNotes.ClientID %>");
            }
            function RefreshGrid(ClientID) {
                $find(ClientID).get_masterTableView().rebind();
            }
I'm calling this from an iframe:
            function RefreshDiscussionNotesGrid() {
                jQuery(document).ready(function () {
                    $("input[id*='btnCloseModal']", parent.document).click();
                    window.parent.RefreshDiscussionNotesGrid();
                });
            }
I'm receiving an error in IE11:
Accessing the 'caller' property of a function or arguments object is not allowed in strict mode

