Within my scenario, I have a button within an iframe section of my page that performs some database processing.
What I need is a means of performing a page refresh o
If the parent's and child iframe domains will be different you will get cross-window security error, in that case you can try to use following:
window.parent.location = document.referrer;