Ved
Ved

Reputation: 8777

How to show notifications in web application?

I am working on a web application in which I need to show the notification to user. However, user should not be interrupted because of that like showing an alert kind of things. Can you please guide me how can i implement this thing which should work in all the browsers and also using javascript/HTML ? I have found some solutions as under: 1) Giving a control on every page (may be button), which will show the user all the events generated so far. 2) Putting an div on every page which will continuously update as and when events occurred

Please help...

thanks in advance...

Upvotes: 3

Views: 8776

Answers (3)

Dan Dascalescu
Dan Dascalescu

Reputation: 151893

If you want your notifications to be visible even when the user is in another tab, or in another application than the browser, then you can use desktop notifications. These work however only for and right now. I've listed an example on how to use Chrome desktop notifications in this SO answer.

Upvotes: 1

DhruvPathak
DhruvPathak

Reputation: 43265

try one of these :

/1. jgrowl :

http://stanlemon.net/projects/jgrowl.html

/2. jquery notification plugin :

http://www.plumtheory.com/demos/notification-center/light/

Upvotes: 4

Sandeep G B
Sandeep G B

Reputation: 4015

You can have a summary section at the bottom of the web page which can be updated with the necessary user alerts.

Are you looking at how to implement it? If so, post what you have tried so far.

Upvotes: 0

Related Questions