Reputation: 4233
I have application that is working in popup. Is there a easy way to do manual back button, as popup windows doesn't have them?
Thanks.
Upvotes: 1
Views: 160
Reputation: 176896
make use of javascript history
object that will work for this
function goBack()
{
window.history.go(-2)
}
Upvotes: 3