What are the properties for a tab that have the same values for every tabs in a tabbed browser window?
For example, If you have 1 window with 3 tabs open, then the tabs' 3 urls [window.location.href/document.location.href] and/or titles [document.title] may or may not be the same.
But if you have another window with 2 tabs, then these 2 tabs will have similar common property with the same value but not the same as the previous 3 tabs.
Is there any common property that each tab has/shares that has the same value for all the tabs in the browser window and can be get/set by javascript or jquery? In browser extension, you can find the id of the browser window which is the same for all the tabs in that window; I need something similar but using javascript or jquery.