Is there a way to access browsing context in JavaScript?
Update: I'm reading HTML5 specification and there, it says that for each new tab, or new window, or iframe there is a notion of browsing context which is created by browser and each new document that you surf (each new link) would be stored and presented to users in this browsing context.
I just wonder if we have access to it. For example, a browsing context has a history and we can access that using window.history
.