Reputation: 1459
I have a page that sometimes open in a popup and sometimes open normally. How can I create a link that closes the page if it's in a popup?
Upvotes: 7
Views: 17940
Reputation: 146350
Use javascript:
window.close();
Or in a link:
<a href="javascript: window.close();">CLOSE ME</a>
Upvotes: 8