You can communicate between all open tabs in Codoforum using the interTab API
There are two methods available to you.
You send messages using this method
CODOF.interTab.broadcast('Hello world!');
You listen to any broadcasted messages using this method
CODOF.interTab.listen(function(message) {
console.log(message);
});
Note: Inter tab communication works using localStorage.