-1

We are developing web messaging application. When we open our website URL into a tab, we able to do chat with our client. But when we switch another tab and client send message us we want to popup a notification message visible from all opened tab. I got few website who are giving this type of notification visible from all tab.

Is there any javascript or flash solution for it?

talonmies
  • 70,661
  • 34
  • 192
  • 269
user2700945
  • 11
  • 1
  • 4

1 Answers1

0

If you use JavaScripts alert(""); to create a popup, your browser will automatically go to the tab where the popup was created

so when you receive the message to your webpage call

$(document).ready(function(){
    alert("you have a message");
});
Jack Allen
  • 549
  • 2
  • 5
  • 19