Could someone help me with this? I have a page sitting in an iframe in a window, to be more specific it is the SharePoint dialog box. I want to find an element with a specific id (or class, it doesn't matter) on the parent, not the window, where the popup originated.
I have tried
$(this).closest('.refreshbtn').click();
$(this).parents('.refreshbtn').click();
$(this).parent().parent().parent('.refreshbtn').click();
Tried it with javascript
window.parent.document.getElementById('refreshbtn').click();
window.parent.parent.document.getElementById('refreshbtn').click();
Without success.
Can someone shed some light?
Many thanks in advance.