Reputation: 20882
I have a site that operates out of an IFRAME.
Is it possible to simulate <a href="x" target="_parent"></a>
with jquery?
Upvotes: 0
Views: 400
Reputation: 526623
window.parent
refers to the parent window
object, so just modify...
window.parent.location.href
Upvotes: 2