The current system of new message notification is just updating the 0 new messages to (int) new messages. If we ajax-enable the same, we could reproduce something similar to a notification we see on Facebook, or just a pulsating number. This can be done in two ways:
Without backend modifications:
As the user changes a page, If there is a new private message, a notification is given when the page finishes loading. This requires no backend support as all it does is parse the (int) portion from the (new messages).
With backend changes:
A ticker, say of 5 secs fetches JSON encoded data from a file(say ucp.php modified), which displays the new message count, at the same time showing a fadeIn(, fadeOut()) animation at the bottom. When the user clicks (x new messages) a dropdown list provides, if any, multiple message overviews (like from whom).
Comments?




